Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,11 @@ jobs:
- restore_cache:
key: example-cache-{{ checksum "example/package.json" }}
- run:
command: npm install -g gulp
command: npm run gulp -- ava
- run:
command: gulp ava
command: npm run gulp -- eslint
- run:
command: gulp eslint
- run:
command: cd example && gulp
command: cd example && npm run gulp -- default
- run:
command: sleep 10 && curl --retry 10 --retry-delay 5 -v http://localhost:3000/

Expand Down
1 change: 1 addition & 0 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Boilerplate for ReactJS project with hot code reloading",
"scripts": {
"start": "node server.js",
"gulp": "gulp $1",
"lint": "eslint src"
},
"repository": {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"build:lib": "babel src --out-dir lib",
"check": "npm run lint && npm run test",
"clean": "rimraf lib",
"gulp": "gulp $1",
"lint": "eslint src test examples",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
Expand Down