Skip to content

Commit

Permalink
Merge pull request ckeditor#27 from onurozkan/t/26
Browse files Browse the repository at this point in the history
Fix: Build scripts will work on Windows. Closes #26.
  • Loading branch information
pomek committed Oct 12, 2017
2 parents 219efac + bea67a1 commit 6c980fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
},
"scripts": {
"build": "npm run create-entry-file && npm run build-ckeditor",
"create-entry-file": "./bin/create-entry-file.js",
"build-ckeditor": "./bin/build-ckeditor.sh",
"create-entry-file": "node bin/create-entry-file.js",
"build-ckeditor": "sh bin/build-ckeditor.sh",
"preversion": "npm run build; if [ -n \"$(git status src/ckeditor.js build/ --porcelain)\" ]; then git add -u src/ckeditor.js build/ && git commit -m 'Internal: Build.'; fi"
}
}

0 comments on commit 6c980fd

Please sign in to comment.