Skip to content

Commit

Permalink
Merge pull request #50 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 6710f16 + 72895bc commit 9c4165d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 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 --tag 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-simple-map",
"keywords": [],
Expand Down Expand Up @@ -52,6 +53,7 @@
},
"devDependencies": {
"can-compute": "^3.3.1",
"detect-cyclic-packages": "^1.1.0",
"jshint": "^2.9.1",
"steal": "^1.2.9",
"steal-qunit": "^1.0.1",
Expand Down

0 comments on commit 9c4165d

Please sign in to comment.