Skip to content

Commit

Permalink
Replace remaining grunt tasks with npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
twiss committed Feb 9, 2021
1 parent cde282d commit 0c5598a
Show file tree
Hide file tree
Showing 9 changed files with 559 additions and 1,727 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ npm*
test/lib/
dist/
openpgp.store/
doc/
.nyc_output/
5 changes: 4 additions & 1 deletion .jsdocrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
module.exports = {
plugins: ['plugins/markdown']
plugins: ['plugins/markdown'],
markdown: {
idInHeadings: true
}
};
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ matrix:
- node_js: "9"

before_script:
- npm install -g grunt-cli codeclimate-test-reporter browserstack-runner
- npm install -g codeclimate-test-reporter browserstack-runner
script:
- $TRAVIS_BUILD_DIR/travis.sh
install: npm install
Expand Down
163 changes: 0 additions & 163 deletions Gruntfile.js

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -563,9 +563,9 @@ To create your own build of the library, just run the following command after cl

npm install && npm test

For debugging browser errors, you can open `test/unittests.html` in a browser or, after running the following command, open [`http://localhost:3000/test/unittests.html`](http://localhost:3000/test/unittests.html):
For debugging browser errors, you can run `npm start` and open [`http://localhost:8080/test/unittests.html`](http://localhost:8080/test/unittests.html) in a browser, or run the following command:

grunt browsertest
npm run browsertest

### How do I get involved?

Expand Down
Loading

0 comments on commit 0c5598a

Please sign in to comment.