File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " packme.js " ,
2
+ "name" : " packme" ,
3
3
"version" : " 1.0.0" ,
4
+ "description" : " Simple and extremely fast binary serialization using classes generated from JSON manifest files." ,
5
+ "main" : " lib/packme.mjs" ,
6
+ "module" : " lib/packme.mjs" ,
4
7
"private" : true ,
5
8
"scripts" : {
6
9
"build" : " rollup -c" ,
10
13
"author" : " " ,
11
14
"license" : " ISC" ,
12
15
"devDependencies" : {
13
- "@rollup/plugin-commonjs" : " ^17.1.0" ,
14
16
"rollup" : " ^2.55.1" ,
15
17
"rollup-plugin-terser" : " ^7.0.2"
16
18
},
Original file line number Diff line number Diff line change 1
- import commonjs from '@rollup/plugin-commonjs' ;
2
1
import { terser } from 'rollup-plugin-terser' ;
3
2
4
3
const production = ! process . env . ROLLUP_WATCH ;
@@ -13,7 +12,6 @@ export default [
13
12
file : 'build/packme.min.js'
14
13
} ,
15
14
plugins : [
16
- commonjs ( ) ,
17
15
production && terser ( )
18
16
] ,
19
17
watch : {
@@ -29,7 +27,6 @@ export default [
29
27
file : 'build/compile.min.js'
30
28
} ,
31
29
plugins : [
32
- commonjs ( ) ,
33
30
production && terser ( )
34
31
] ,
35
32
watch : {
You can’t perform that action at this time.
0 commit comments