Skip to content

Commit f6805aa

Browse files
crobinson42jmdobry
authored andcommitted
revert: remove build-process semantic-release (#31)
1 parent 1213d5c commit f6805aa

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

.github/PULL_REQUEST_TEMPLATE.md

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
Fixes #<issue_number_goes_here> (it's a good idea to open an issue first for discussion)
22

3-
> Note: This project uses `semantic-release` to auto publish npm packages on successful builds.
4-
The commit messages must follow AngularJS Commit Msg Conventions: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.uyo6cb12dt6w
5-
6-
- [ ] - My commit messages follow AngularJS Commit Msg Conventions
73
- [ ] - If applicable, appropriate JSDoc comments were updated in source code
84
- [ ] - If applicable, appropriate changes to js-data.io docs have been suggested ("Suggest Edits" button)
95
- [ ] - Unit test coverage did not decrease & appropriate tests changes made

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
32
<img src="https://raw.githubusercontent.com/js-data/js-data/master/js-data.png" alt="js-data logo" title="js-data" align="right" width="96" height="96" />
43

54
# js-data-mongodb

circle.yml

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ dependencies:
1313
test:
1414
post:
1515
- nyc report --reporter=lcov | codecov
16-
- npm run semantic-release || true

package.json

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-mongodb",
33
"description": "MongoDB adapter for js-data.",
4-
"version": "0.0.0-semantic-release",
4+
"version": "1.0.0-rc.1",
55
"homepage": "https://github.com/js-data/js-data-mongodb",
66
"repository": {
77
"type": "git",
@@ -55,12 +55,7 @@
5555
"mocha": "mocha -t 20000 -R dot -r babel-core/register -r babel-polyfill mocha.start.js",
5656
"cover": "nyc --require babel-core/register --require babel-polyfill --cache mocha -t 20000 -R dot mocha.start.js && nyc report --reporter=html",
5757
"test": "npm run build && npm run cover",
58-
"release": "npm test && npm run doc && repo-tools updates && repo-tools changelog && repo-tools authors",
59-
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
60-
},
61-
"release": {
62-
"verifyConditions": "condition-circle",
63-
"branch": "realease"
58+
"release": "npm test && npm run doc && repo-tools updates && repo-tools changelog && repo-tools authors"
6459
},
6560
"dependencies": {
6661
"js-data-adapter": "~0.8.2",
@@ -72,8 +67,6 @@
7267
"mongodb": ">=1.3.x"
7368
},
7469
"devDependencies": {
75-
"condition-circle": "^1.5.0",
76-
"js-data-repo-tools": "0.5.6",
77-
"semantic-release": "^4.3.5"
70+
"js-data-repo-tools": "0.5.6"
7871
}
7972
}

0 commit comments

Comments
 (0)