Skip to content

Commit

Permalink
Add build scripts (#55)
Browse files Browse the repository at this point in the history
* Add build scripts

* Fix version number
  • Loading branch information
ajitbohra committed Nov 1, 2018
1 parent 2c25ed3 commit 584e226
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gutenberg-examples",
"version": "1.0",
"version": "1.0.0",
"private": true,
"description": "Gutenberg Examples",
"repository": "git+https://github.com/WordPress/gutenberg-examples.git",
Expand All @@ -13,7 +13,12 @@
],
"scripts": {
"lint-js": "eslint .",
"lint-js:fix": "eslint . --fix"
"lint-js:fix": "eslint . --fix",
"build": "npm run build:01-basic && npm run build:03-editable && npm run build:04-controls && npm run build:05-recipe",
"build:01-basic": "cd 01-basic-esnext && npm run build",
"build:03-editable": "cd 03-editable-esnext && npm run build",
"build:04-controls": "cd 04-controls-esnext && npm run build",
"build:05-recipe": "cd 05-recipe-card-esnext && npm run build"
},
"devDependencies": {
"eslint": "^5.2.0",
Expand Down

0 comments on commit 584e226

Please sign in to comment.