Skip to content

Commit

Permalink
chore: simplify release task
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed Jun 7, 2022
1 parent 0cc316e commit 6736c0d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 50 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Run `npm test` to run the unit tests.

## Release new aurelia-cli version

Please see the [release instructions](./RELEASE_INSTRUCTIONS.md).
Just run `npm version patch` (or minor or major)

## License

Expand Down
4 changes: 0 additions & 4 deletions RELEASE_INSTRUCTIONS.md

This file was deleted.

40 changes: 0 additions & 40 deletions gulpfile.js

This file was deleted.

12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@
"au": "bin/aurelia-cli.js"
},
"scripts": {
"lint": "gulp lint",
"lint": "eslint lib spec",
"pretest": "npm run lint",
"test": "jasmine",
"coverage": "nyc jasmine",
"test:watch": "nodemon -x 'npm test'"
"test:watch": "nodemon -x 'npm test'",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
Expand Down Expand Up @@ -87,14 +90,13 @@
},
"devDependencies": {
"@types/node": "^17.0.39",
"gulp-bump": "^3.2.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-eslint": "^6.0.0",
"eslint": "^8.17.0",
"jasmine": "^4.1.0",
"jasmine-spec-reporter": "^7.0.0",
"mock-fs": "^5.1.2",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"standard-changelog": "^2.0.27",
"yargs": "^17.5.1"
}
}

0 comments on commit 6736c0d

Please sign in to comment.