Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.

Commit

Permalink
fix: tweaks
Browse files Browse the repository at this point in the history
Signed-off-by: Charlike Mike Reagent <[email protected]>
  • Loading branch information
Charlike Mike Reagent committed Nov 14, 2018
1 parent c0b896b commit 070bc1a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@ jobtest: &jobtest
name: Installing project dependencies
command: yarn install --prefer-offline || yarn install
- run:
name: Linting and testing your project
command: yarn global add nyc@latest && yarn run lint && yarn test
name: Linting your project
command: yarn run lint
- run:
name: Testing your project
command: yarn global add nyc@latest && yarn test
- save_cache:
key: new-release-{{ checksum "yarn.lock" }}
paths: node_modules
Expand Down
Empty file removed .gitkeep
Empty file.
22 changes: 12 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@
"scripts": {
"docs": "verb",
"lint": "eslint '**/*.js' --cache --fix --quiet --format codeframe",
"test-only": "asia -r esm",
"test": "nyc asia",
"commit": "yarn lint && yarn test && yarn dry",
"dry": "git add -A && git status --porcelain && gitcommit -sS",
"release": "node cli.js"
"precommit": "yarn run lint && yarn run test-only",
"commit": "yarn dry",
"dry": "git add -A && git status --porcelain && gitcommit",
"release": "tunnckocore-release"
},
"engines": {
"node": "^8.11.0 || >=10.13.0"
Expand All @@ -28,17 +30,12 @@
"index.js",
"cli.js"
],
"bin": {
"release": "cli.js",
"new-release": "cli.js",
"tunnckocore-release": "cli.js"
},
"main": "index.js",
"module": "src/index.js",
"typings": "src/index.d.ts",
"version": "5.0.0",
"version": "5.0.3",
"repository": "tunnckoCoreLabs/new-release",
"homepage": "https://github.com/tunnckoCore/release-cli",
"homepage": "https://github.com/tunnckoCoreLabs/new-release",
"author": "Charlike Mike Reagent (https://tunnckocore.com)",
"publishConfig": {
"access": "public",
Expand Down Expand Up @@ -76,5 +73,10 @@
"new-release",
"semantic-release"
]
},
"bin": {
"release": "cli.js",
"new-release": "cli.js",
"tunnckocore-release": "cli.js"
}
}
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2140,9 +2140,9 @@ p-try@^1.0.0:
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=

parse-commit-message@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/parse-commit-message/-/parse-commit-message-3.2.0.tgz#8065d006e9e4b273889130067ae435b8986508a6"
integrity sha512-LzkHT+I2cG+3v0iGnMNPda4qdZoTjiz40rOEdo7pd7gpE4YHXFDvF4dj2LuoMQX7Ykb3WlKZBfwLSKFHASvjGw==
version "3.2.1"
resolved "https://registry.yarnpkg.com/parse-commit-message/-/parse-commit-message-3.2.1.tgz#2c04524469df5c7f8d952205a112ba10fe64554b"
integrity sha512-Qis/J5olChQS7UG/sPDc4fYX/GQvc33a1kxwq+Md42CSCexczXA1C4IR3rOziriYxYhptyBdaT2r7hs897UTLQ==
dependencies:
collect-mentions "^1.0.2"
dedent "^0.7.0"
Expand Down

0 comments on commit 070bc1a

Please sign in to comment.