Skip to content

Commit 25592c1

Browse files
committed
chore(bower): dropped support for bower
since bower itself recommends migrating away BREAKING CHANGE: Bower is no longer supported
1 parent addb0ff commit 25592c1

File tree

3 files changed

+1
-42
lines changed

3 files changed

+1
-42
lines changed

bower.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

howto_release.markdown

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@ To release version x.y.z:
77
- npm i
88
- bump version in package.json to x.y.z (should match the used traverson version, at least the major and minor number)
99
- bump version in package-lock.json to x.y.z (should match the used traverson version, at least the major and minor number)
10-
- bump version in bower.json to x.y.z
1110
- `npm run build` (to create a fresh browser build, also make sure all tests pass etc.)
12-
- First release? Then `bower register package-name git://github.com/user/repo.git`
1311
- `git commit -am"release x.y.z" && git push`
1412
- `npm publish`
15-
- `git checkout -b release-x.y.z` (to create the release branch, required for bower)
1613
- `git add -f browser/dist/traverson-angular.*` (to add the build artifacts to the release branch)
1714
- `git commit -m"add build artifacts for release"`
1815
- `git push origin release-x.y.z`
@@ -23,7 +20,7 @@ To release version x.y.z:
2320
- empty description
2421
- add all four JS files from browser/dist as "binaries" to the release
2522
- Publish release
26-
- Why not just create a tag from the branch via git? Because we want to add the build artifacts to the GitHub relase as attachments (for users neither using npm or bower). This is only possible if the release was created via GitHub's web interface. Normal git tags show up as releases there too, but you can't add attachments or edit the release afterwards. Releases created via the web interface create a git tag automatically, however.
23+
- Why not just create a tag from the branch via git? Because we want to add the build artifacts to the GitHub relase as attachments (for users not using npm). This is only possible if the release was created via GitHub's web interface. Normal git tags show up as releases there too, but you can't add attachments or edit the release afterwards. Releases created via the web interface create a git tag automatically, however.
2724
- `git checkout master`
2825
- `git branch -D release-x.y.z`
2926
- `git push origin :release-x.y.z`

readme.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ You can grab a download from the [latest release](https://github.com/traverson/t
3737
* `traverson.external.min.js`: Minified require/external build. Created with browserify's `--require` parameter and intended to be used (required) from other browserified modules, which were created with `--external traverson-angular`. This build could be used if you use browserify but do not want to bundle traverson-angular and Traverson with your own browserify build but keep it as a separate file.
3838
* `traverson.external.js`: Non-minified require/external build, same as before, just larger.
3939

40-
### Bower
41-
42-
`bower install traverson-angular --save`
43-
4440
Usage
4541
-----
4642

0 commit comments

Comments
 (0)