Skip to content

Commit

Permalink
Merge pull request #66 from canjs/landscaper/define-cycles-github
Browse files Browse the repository at this point in the history
landscaper: Add a cycle detection script to test process
  • Loading branch information
bmomberger-bitovi authored Oct 4, 2017
2 parents ea34ddc + 3a36bf4 commit 421782b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run jshint && npm run testee",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"jshint": "jshint ./*.js --config",
"release:pre": "npm version prerelease && npm publish --tags=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "node build.js"
"build": "node build.js",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"main": "can-view-autorender",
"keywords": [
Expand All @@ -46,10 +47,11 @@
"can-component": "^3.2.2",
"can-define": "^1.3.2",
"can-stache": "^3.3.0",
"detect-cyclic-packages": "^1.1.0",
"jshint": "^2.9.1",
"steal": "^1.2.10",
"steal-qunit": "^1.0.1",
"steal-tools": "^1.1.2",
"testee": "^0.7.0"
}
}
}

0 comments on commit 421782b

Please sign in to comment.