Skip to content

Commit d0c8a1f

Browse files
committed
build v1.0.19
1 parent acacee1 commit d0c8a1f

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

dist/hotkeys.common.js renamed to dist/store.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* storejs v1.0.18
2+
* storejs v1.0.19
33
* Local storage localstorage package provides a simple API
44
*
55
* Copyright (c) 2018 kenny wang <[email protected]>

dist/hotkeys.common.min.js renamed to dist/store.common.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/store.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* storejs v1.0.18
2+
* storejs v1.0.19
33
* Local storage localstorage package provides a simple API
44
*
55
* Copyright (c) 2018 kenny wang <[email protected]>

dist/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* storejs v1.0.18
2+
* storejs v1.0.19
33
* Local storage localstorage package provides a simple API
44
*
55
* Copyright (c) 2018 kenny wang <[email protected]>

dist/store.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.19",
44
"description": "Local storage localstorage package provides a simple API",
55
"homepage": "https://github.com/jaywcjlove/store.js",
6-
"main": "dist/hotkeys.common.js",
6+
"main": "dist/store.common.js",
77
"module": "dist/store.esm.js",
88
"repository": {
99
"type": "git",

scripts/build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ async function build() {
6262

6363
write('dist/store.js', umd.code)
6464
.then(() => write('dist/store.min.js', umdMinified, true))
65-
.then(() => write('dist/hotkeys.common.js', common.code))
66-
.then(() => write('dist/hotkeys.common.min.js', commonMinified, true))
65+
.then(() => write('dist/store.common.js', common.code))
66+
.then(() => write('dist/store.common.min.js', commonMinified, true))
6767
.then(() => write('dist/store.esm.js', es.code));
6868
}
6969

scripts/watch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require('colors-cli/toxic');
99
const watchOptions = {
1010
input: 'lib/main.js',
1111
output: [
12-
{ file: 'dist/hotkeys.common.js', name: 'hotkeys', format: 'cjs' },
12+
{ file: 'dist/store.common.js', name: 'store', format: 'cjs' },
1313
{ file: 'dist/store.js', name: 'store', format: 'umd', banner: banner.multibanner() },
1414
{ file: 'dist/store.esm.js', name: 'store', format: 'es', banner: banner.multibanner() },
1515
],

0 commit comments

Comments
 (0)