Skip to content

Commit 6d74931

Browse files
refactor(build): switch UMD bundle directory to _bundles
1 parent b63a35c commit 6d74931

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@uirouter/sticky-states",
33
"description": "UI-Router Sticky States: Keep states and their components alive while a different state is activated",
4-
"version": "1.4.0",
4+
"version": "1.4.1",
55
"scripts": {
6-
"clean": "shx rm -rf lib lib-esm bundles",
6+
"clean": "shx rm -rf lib lib-esm _bundles",
77
"build": "npm run clean && tsc && tsc -m es6 -outDir lib-esm && npm run bundle",
88
"bundle": "rollup -c",
99
"test": "karma start",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var extension = MINIFY ? ".min.js" : ".js";
3232
const CONFIG = {
3333
moduleName: pkg.name,
3434
entry: 'lib-esm/stickyStates.js',
35-
dest: 'bundles/ui-router-sticky-states' + extension,
35+
dest: '_bundles/ui-router-sticky-states' + extension,
3636
external: '@uirouter/core',
3737
globals: { '@uirouter/core': '@uirouter/core' },
3838

0 commit comments

Comments
 (0)