Skip to content

Commit

Permalink
Fix CI script attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed May 27, 2020
1 parent 844bdd7 commit 077d4b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ jobs:

- name: Build package
run: npm run build:all
shell: bash
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:typescript": "tsc",
"copy:graphql": "cp src/*.graphql dist/",
"copy:editor": "mkdir \"dist/editor\" && cp src/editor/*.{html,js,css,svg} dist/editor",
"build:all": "mkdir dist && npm run build:editor && npm run build:typescript && npm run copy:graphql && npm run copy:editor",
"build:all": "rm -rf dist && mkdir dist && npm run build:editor && npm run build:typescript && npm run copy:graphql && npm run copy:editor",
"prettier": "prettier --ignore-path .gitignore --write --list-different .",
"prettier:check": "prettier --ignore-path .gitignore --check ."
},
Expand Down

0 comments on commit 077d4b9

Please sign in to comment.