Skip to content

Commit f9778e0

Browse files
committed
rename repack to build
1 parent 90d157e commit f9778e0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"lint-fix": "npm run lint -- --fix",
1010
"flow-typed-install": "flow-typed install",
1111
"flow": "flow",
12-
"prepack": "npm run prepack:babel && npm run prepack:flow",
13-
"prepack:babel": "babel src/ -d lib",
14-
"prepack:flow": "flow-copy-source src lib",
15-
"ci-test": "NODE_ENV=test npm run prepack && npm run flow && npm run jest",
16-
"test": "NODE_ENV=test npm run prepack && npm run jest",
12+
"build": "npm run build:babel && npm run build:flow",
13+
"build:babel": "babel src/ -d lib",
14+
"build:flow": "flow-copy-source src lib",
15+
"ci-test": "NODE_ENV=test npm run build && npm run flow && npm run jest",
16+
"test": "NODE_ENV=test npm run build && npm run jest",
1717
"jest": "jest --testMatch **/test/*.js --verbose",
1818
"test-update": "npm run test -- -u"
1919
},

0 commit comments

Comments
 (0)