Backpack Versions Save

🎒 Backpack is a minimalistic build system for Node.js projects.

v0.2.1

7 years ago

Patch Release

  • Upgraded to Lerna 38
  • Modifications to watchOptions will be honored. #53

v0.2.0

7 years ago
  • Pass thru the underlying webpack instance to users in backpack.config.js so they don't need to redownload webpack if they want to do things like add a plugin, etc.

v0.1.0

7 years ago
  • Fixed #37 issue with relative paths and symlinks and source-map-support. The initial solution in 0.0.9 modified webpack.BannerPlugin() to print the absolute path to source-map-support. While this solved an issue with lerna bootstrap, it created errors for people building on one server and running their app on another due to invalid paths. @ericclemmons and @sompylasar 's solution with process.cwd()now prints the correct path all the time.
  • Launched new slack signup page at https://palmer.chat

v0.0.9

7 years ago
  • Addbabel-preset-backpack
  • Fix babel config when in test mode

v0.0.8

7 years ago
  • Fix issue with lerna's symlinking and source-map-support

v0.0.7

7 years ago
  • Fix #19 . Arguments passed into backpack or backpack dev will be passed through to nodemon. So now you can run something likebackpack dev --debug=5858.

v0.0.6

7 years ago
  • Add support for extending Backpack's default babel config through a custom .babelrc file
  • Add example for custom babel config
  • Add example for adding Flow to Backpack

v0.0.5

7 years ago
  • Change default output path from ./build/server/main.js to just ./build/main.js. This will make working with filesystem much easier as relative paths of src and build directories will be congruent.

v0.0.4

7 years ago
  • Add support for Jest by exposing babel.js
  • Improve babel presets