Skip to content

Commit

Permalink
chore(*): rename bundles to _bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed May 29, 2017
1 parent a106156 commit 9ace6ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@uirouter/dsr",
"description": "UI-Router Deep State Redirect: redirect to the most recently activated child state",
"version": "1.0.1",
"version": "1.0.2",
"scripts": {
"clean": "shx rm -rf lib lib-esm bundles",
"clean": "shx rm -rf lib lib-esm _bundles",
"build": "npm run compile && rollup -c && rollup -c --environment MINIFY",
"compile": "npm run clean && tsc && tsc -m es6 --outDir lib-esm",
"prepare": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var extension = MINIFY ? ".min.js" : ".js";
const CONFIG = {
moduleName: pkg.name,
entry: 'lib-esm/index.js',
dest: 'bundles/ui-router-dsr' + extension,
dest: '_bundles/ui-router-dsr' + extension,
external: '@uirouter/core',
globals: { '@uirouter/core': '@uirouter/core' },

Expand Down

0 comments on commit 9ace6ba

Please sign in to comment.