Skip to content

Commit

Permalink
chore: changelog, cleanup npm package, remove deployment from build
Browse files Browse the repository at this point in the history
  • Loading branch information
francisu committed Nov 4, 2020
1 parent 9db9983 commit 69256e7
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 58 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,5 @@ node_modules
.idea
.nyc_output

mocha-multi-reporters*.tgz

yarn.lock
package-lock.json
24 changes: 10 additions & 14 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
node_modules
scripts

.editorconfig
.idea

.github
artifacts
tests
Expand All @@ -9,24 +12,17 @@ tests
.gitignore
.travis.yml
yarn.lock
yarn-error.log
xunit.xml
commitlint.config.js
.nyc_output/
coverage
mocha-multi-reporters.tar.gz
node_modules
scripts

.github
artifacts
tests
.coveralls.yml
.eslint*
.gitignore
.travis.yml
yarn.lock
xunit.xml
commitlint.config.js
.nyc_output/
coverage
mocha-multi-reporters.tar.gz
mocha-multi-reporters*.tgz


renovate.json
config.json
.ncurc.js
20 changes: 0 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,3 @@ install: yarn install --ignore-engines
script: ./scripts/build.sh
after_success:
- cat artifacts/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
before_deploy:
- npm prune --production
- tar -czvf mocha-multi-reporters.tar.gz package.json index.js lib/* config.json LICENSE README.md CHANGELOG.md
- npm run deploy:prepare
deploy:
- provider: releases
api_key:
secure: os3PhiyAVCtZw0rrFIl06LZVVCaifosZrMnjJxRcnjEjdqpybsQUdjWxj3JMIIC0sjrQmk4NvMCbgw23zP4BemsGcPelzeFH/fx6nu9nSBYNx9Bq2cNBP4+wvFgdTLyphzk5z24UZ3MlJWpb7xXR6mn76k5knvH5WS67hdZ8EWMaQOPWiQq57sSI/hautBeQpwdU0+vzXdf6gWDK7bCuGAYMvjLRa6JIU242GuzS1vPrdjatfXEJmot6PtBLt042T2v56ijw1eAHc3Z9AxN0t8FySZd7up/YsQcQvOXrWShmp2yt1nO19WGozEO1t0XDub19Rx7jNwOv7LLKPJbD9gkjZ/LlTxZuWjj8KJxWt45Hn+GWEueyqsDdRSH2ZuPDFpRza4V2E5SjuP8FO0+uQlb2qnSFH/psWwK/dikjvbqaAE6vZbel0xKzxg54n1NIni/olpWh/iiUB3I9o0w/UM/yXN8rh4CaYwyW8dOAql3dBhW42r+guFjXb6YfPq+zEbYhNjBLFk9hEV92qpCJ4xH+noNmszrO5Ybgp+AQDtxqIfsKX+841T1Ca401xPpYuPHGRe9Bmz96P/HmFOE8iXzQPwZMridZkTocwfoZjUxsFkxz3JJJ+vNwh7M7OmYqoTLSCUyX8RPqItPUmmBGnw0gYtGBQtgt3kHGlbOTR3c=
file: mocha-multi-reporters.tar.gz
skip_cleanup: true
on:
repo: stanleyhlng/mocha-multi-reporters
branch: automatedRelease
node: "10"
- provider: script
skip_cleanup: true
script: ./scripts/publish.sh
on:
branch: automatedRelease
node: "12"
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.4.1](https://github.com/stanlyhlng/mocha-multi-reporters/compare/v1.1.7...v1.4.1) (2020-11-04)

### Features

First release after a long time of no maintenance, brings this package current with the [cypress-multi-reporters](https://www.npmjs.com/package/cypress-multi-reporters) changes over
the last couple of years.

* Bring dependencies to current, including Mocha 8.2.0
* [#72](https://github.com/stanleyhlng/mocha-multi-reporters/pull/72) Upgrade to pick up YOU54F changes from cypress-multi-reporter
* [#69](https://github.com/stanleyhlng/mocha-multi-reporters/pull/69) Finding reporter file using current directory does not work with yarn 2
* [#61](https://github.com/stanleyhlng/mocha-multi-reporters/pull/61) Check reporter
* npm package cleanup


## [1.4.0](https://github.com/you54f/cypress-multi-reporters/compare/v1.3.0...v1.4.0) (2020-05-12)


Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
"scripts": {
"devtest": "nyc mocha --require chai/register-expect --no-coverage --timeout 5000 tests/**/*.test.js*",
"lint": "eslint .",
"test": "nyc mocha --require chai/register-expect --timeout 5000 tests/**/*.test.js*",
"deploy:prepare": "./scripts/create_npmrc_file.sh",
"release": "standard-version --release-as 1.4.1"
"test": "nyc mocha --require chai/register-expect --timeout 5000 tests/**/*.test.js*"
},
"author": "Stanley Ng <[email protected]",
"contributors": [
Expand All @@ -32,6 +30,9 @@
"bugs": "https://github.com/stanleyhlng/mocha-multi-reporters/issues",
"homepage": "https://github.com/stanleyhlng/mocha-multi-reporters",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"debug": "^4.1.1",
"lodash": "^4.17.15"
Expand Down Expand Up @@ -62,8 +63,6 @@
},
"husky": {
"hooks": {
"lint": "lint",
"test": "test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
Expand Down
10 changes: 0 additions & 10 deletions scripts/create_npmrc_file.sh

This file was deleted.

7 changes: 0 additions & 7 deletions scripts/publish.sh

This file was deleted.

0 comments on commit 69256e7

Please sign in to comment.