Skip to content

Commit

Permalink
chore: remove Grunt and Bower
Browse files Browse the repository at this point in the history
  • Loading branch information
zcei authored and Khaledgarbaya committed Feb 9, 2018
1 parent b581b75 commit c2c2b98
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 161 deletions.
2 changes: 0 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ node_modules/
typings/
sandbox/
test/
bower.json
CODE_OF_CONDUCT.md
COLLABORATOR_GUIDE.md
CONTRIBUTING.md
COOKBOOK.md
ECOSYSTEM.md
Gruntfile.js
karma.conf.js
webpack.*.js
sauce_connect.log
8 changes: 3 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ Please update the docs accordingly so that there are no discrepencies between th

### Developing

- `grunt test` run the jasmine and nodeunit tests
- `grunt build` run webpack and bundle the source
- `grunt version` prepare the code for release
- `grunt watch:test` watch for changes and run `test`
- `grunt watch:build` watch for changes and run `build`
- `npm run test` run the Karma / Jasmine tests (browser & unit)
- `npm run build` run webpack and bundle the source
- `npm run version` prepare the code for release

Please don't include changes to `dist/` in your pull request. This should only be updated when releasing a new version.

Expand Down
98 changes: 0 additions & 98 deletions Gruntfile.js

This file was deleted.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@ Using npm:
$ npm install axios
```

Using bower:

```bash
$ bower install axios
```

Using cdn:

```html
Expand Down
38 changes: 0 additions & 38 deletions bower.json

This file was deleted.

2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ To run the examples:
1. `git clone https://github.com/axios/axios.git`
2. `cd axios`
3. `npm install`
4. `grunt build`
4. `npm run build`
5. `npm run examples`
6. [http://localhost:3000](http://localhost:3000)
12 changes: 1 addition & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build": "npm run clean && npm run cjs && npm run browser",
"lint": "eslint lib test",
"preversion": "npm test",
"version": "npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json",
"version": "npm run build && git add -A dist && git add CHANGELOG.md package.json",
"postversion": "git push && git push --tags",
"examples": "node ./examples/server.js",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
Expand Down Expand Up @@ -54,15 +54,6 @@
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-karma": "^2.0.0",
"grunt-ts": "^6.0.0-beta.3",
"grunt-webpack": "^1.0.18",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine": "^2.9.0",
"karma": "^1.3.0",
Expand All @@ -78,7 +69,6 @@
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^2.0.9",
"load-grunt-tasks": "^3.5.2",
"minimist": "^1.2.0",
"nock": "^9.1.6",
"rimraf": "^2.6.2",
Expand Down

0 comments on commit c2c2b98

Please sign in to comment.