3.3.1 • Published 5 years ago

mrbuilder v3.3.1

Weekly downloads
213
License
0BSD
Repository
-
Last release
5 years ago

These tools help develop mrbuilder, they could be used in other multimodule, monorepos. This is meant to hold all common dev dependencies. This dependency has all of the mrbuilder tools. You can use the plugins for more specific tools.

Autoinstall

Adding plugins to your project or running these commands, may cause them to added as dep dependencies to your project. This is a good thing, as now you only have to add them in one place. If you add the deps themselves then it will not auto install.

Upgrade from 1.2.x->2.0.0

This should be a seamless upgrade, for the supported plugins. Webpack4 is significantly different and third party plugins may need to be changed to support webpack 4. For now 2.0.0 and 1.x will be supported until Webpack5 is released. Then Mrbuilder 3.x and 2.x will be supported. I only have so much bandwidth to support old versions; while at the same time not everyone has the bandwith to upgrade all the time. Sound like a reasonable compromise?

Upgrade from 0.x->1.2

The 'mrbuilder' package no longer ships with the dependencies. Dependencies will be added as you run commands. That is calling mrbuilder will cause the plugin to be installed. You can add the plugins manually to your package.json if you prefer; as it may be faster.

Configuration

The tools are designed to run with smart defaults. Edit your package.json like this

"scripts":{
 "karma": "mrbuilder",
 //if you want plain moch use mrbuilder-mocha instead.
    "test": "mrbuilder",
    "demo": "mrbuilder",
    "app":"mrbuilder",
    "server": "mrbuilder",
    //use "babel":"mrbuilder", to only run babel instead of webpack
    "prepublish": "mrbuilder",
},
"devDependencies":{
 "mrbuilder-plugin-support":"^2.2.3"
}

With this configuration you can run

  • Tests:
$ yarn run test
  • Karma:
$ yarn run karma
  • Demo:
$ yarn run demo
  • Server:
$ yarn run server

Babel

Mrbuilder uses babel to compile source code. This command is for when you don't need webpack to do the compiling. The arguments are the same as babel-cli but are defaulted to

$ mrbuilder-babel -s true &&\
 --out-dir lib &&\
 --copy-files &&\

Webpack

This tool is designed to compile your code with webpack. It respects all the webpack cli but has been extended to be easier in multimodule projects. Part of what this does is creates alias to make debugging and changing multiple modules easier in dev mode and compile and biuld modes.

Custom Webpack Configuration

Sometimes you need to change webpacks configuration. mrbuilder-webpack extends normal webpack behaviour to look into the dependencies and the current project for a babel-config.js if this file exists it attempts to load it. this file differs from traditional webpack as that it is expected to be a function

module.export = function(options,webpack, optionsManager){
  // options - are just for passing meta data to other loaders and from other loaders.
  // webpack is the actual configuration.  You can do whatever.
  // The optionsManager currently running.
  return webpack.
}

If you want or don't want different modules loaded by webpack, it looks in package.json for include/exclude array of globs

package.json

{
  "mrbuilder":{
     "plugins":["your_plugins"],
  }
}

Mocha

For non browser testing we use plain mocha. Its faster and easier to run than Karma but can not do browsery things. It uses the same babel configuration as mrbuilder-babel. It uses a combination of environmental variables and arguments for configuration, though typically it takes neither.

Karma

Karma testing is useful for testing in browser. This configuration uses the aformentioned webpack with the following additional settings.

3.3.1

5 years ago

3.3.1-alpha.0

5 years ago

3.3.0

5 years ago

3.3.0-alpha.2

5 years ago

3.3.0-alpha.0

5 years ago

3.2.1

5 years ago

3.2.0

5 years ago

3.1.7

6 years ago

3.1.6

6 years ago

3.1.5

6 years ago

3.1.4

6 years ago

3.1.3

6 years ago

3.1.2

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.6

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

3.0.0-0

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.1.0-0

6 years ago

2.0.4

6 years ago

2.0.4-5

6 years ago

2.0.4-3

6 years ago

2.0.4-1

6 years ago

2.0.4-0

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

2.0.0-beta.6

6 years ago

2.0.0-beta.5

6 years ago

2.0.0-beta.4

6 years ago

2.0.0-beta.3

6 years ago

2.0.0-beta.2

6 years ago

2.0.0-beta.1

6 years ago

1.2.6

6 years ago

1.2.3

6 years ago

1.2.0

6 years ago

1.1.0-0

6 years ago

1.0.3-1.0

6 years ago

1.0.3-1.1.0-0.0

6 years ago

1.0.0

6 years ago

0.9.11

6 years ago

0.9.10

6 years ago

0.9.9

6 years ago

0.9.7

6 years ago

0.9.6

6 years ago

0.9.5

6 years ago

0.9.2

6 years ago

0.9.1

6 years ago

0.8.5

6 years ago

0.8.4

6 years ago

0.8.2

6 years ago

0.8.1

6 years ago

0.8.0

6 years ago

0.7.3

6 years ago

0.7.2

6 years ago

0.7.1

6 years ago

0.7.0

6 years ago

0.4.0

6 years ago

0.3.8

6 years ago

0.3.7

6 years ago

0.3.6

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.11

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago