We use builder and npm
to control all aspects of development and
publishing.
As a preliminary matter so you can type builder
instead of
./node_modules/.bin/builder
for all commands, please update your shell to include
./node_modules/.bin
in PATH
like:
export PATH="${PATH}:./node_modules/.bin"
Due to a postinstall bug affecting certain version combinations of npm
v2 and Node (e.g. node v4.2.2
, npm v2.14.7
), we recommend that you use npm
v3. You can use npm
to upgrade npm
:
$ npm install -g npm@3
Build for production use (NPM, bower, etc) and create dist
UMD bundles
(min'ed, non-min'ed)
$ builder run build
Note that dist/
files are only updated and committed on tagged releases.
All development tasks consist of watching the demo bundle, the test bundle and launching a browser pointed to the demo page.
Run the demo
application with watched rebuilds:
$ builder run dev # dev test/app server (OR)
$ builder run open-dev # dev servers _and a browser window opens!_
From there you can see:
- Demo app: 127.0.0.1:3000
- Client tests: 127.0.0.1:3001/test/client/test.html
We use the following basic pattern for logging:
if (process.env.NODE_ENV !== "production") {
/* eslint-disable no-console */
if (typeof console !== "undefined" && console.warn) {
console.warn("Oh noes! bad things happened.");
}
/* eslint-enable no-console */
}
Replace console.warn
in the condtional + method call as appropriate.
Breaking this down:
process.env.NODE_ENV !== "production"
- This part removes all traces of the code in the production bundle, to save on file size. This also means that no warnings will be displayed in production.typeof console !== "undefined" && console.METHOD
- A permissive check to make sure theconsole
object exists and can use the appropriateMETHOD
-warn
,info
, etc.
To signal production mode to the webpack build, declare the NODE_ENV
variable:
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify("production")
})
Unfortunately, we need to do all of this every time to have Uglify properly drop the code, but with this trick, the production bundle has no change in code size.
During development, you are expected to be running either:
$ builder run dev
to build the lib and test files. With these running, you can run the faster
$ builder run check-dev
Command. It is comprised of:
$ builder run lint
$ builder run test-dev
Note that the tests here are not instrumented for code coverage and are thus more development / debugging friendly.
CI doesn't have source / test file watchers, so has to build the test files via the commands:
$ builder run check # PhantomJS only
$ builder run check-cov # (OR) PhantomJS w/ coverage
$ builder run check-ci # (OR) PhantomJS,Firefox + coverage - available on Travis.
Which is currently comprised of:
$ builder run lint # AND ...
$ builder run test # PhantomJS only
$ builder run test-cov # (OR) PhantomJS w/ coverage
$ builder run test-ci # (OR) PhantomJS,Firefox + coverage
Note that (test|check)-(cov|ci)
run code coverage and thus the
test code may be harder to debug because it is instrumented.
The client tests rely on webpack dev server to create and serve the bundle
of the app/test code at: http://127.0.0.1:3001/assets/main.js which is done
with the task builder run server-test
(part of npm dev
).
Code coverage reports are outputted to:
coverage/
client/
BROWSER_STRING/
lcov-report/index.html # Viewable web report.
IMPORTANT - NPM: To correctly run preversion
your first step is to make
sure that you have a very modern npm
binary:
$ npm install -g npm
Built files in dist/
should not be committeed during development or PRs.
Instead we only build and commit them for published, tagged releases. So
the basic workflow is:
# Make sure you have a clean, up-to-date `master`
$ git pull
$ git status # (should be no changes)
# Choose a semantic update for the new version.
# If you're unsure, read about semantic versioning at http://semver.org/
$ npm version major|minor|patch -m "Version %s - INSERT_REASONS"
# ... the `dist/` and `lib/` directories are now built, `package.json` is
# updated, and the appropriate files are committed to git (but unpushed).
# *Note*: `lib/` is uncommitted, but built and must be present to push to npm.
# Push the dist and version commits; and the tag:
$ git push --follow-tags
# And finally publish to `npm`!
$ npm publish
And you've published!
For additional information on the underlying NPM technologies and approaches, please review:
npm version
: Runs verification, buildsdist/
andlib/
viascripts
commands.- Our scripts also run the applicable
git
commands, so be very careful when running outversion
commands.
- Our scripts also run the applicable
npm publish
: Uploads to NPM.- NOTE: We don't build in
prepublish
because of thenpm install
runsnpm prepublish
bug
- NOTE: We don't build in