Skip to content

Commit a606726

Browse files
committed
0.24.3
1 parent 730d05a commit a606726

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
{
2-
"name": "@rxdi/bolt",
3-
"version": "0.24.2",
2+
"name": "bolt",
3+
"version": "0.24.3",
44
"main": "index.js",
55
"author": "James Kyle <[email protected]>",
66
"license": "MIT",
77
"repository": "https://github.com/boltpkg/bolt",
88
"bin": {
9-
"mono": "./bin.js",
10-
"bolt": "./bin.js",
11-
"rxdi-bolt": "./bin.js"
9+
"bolt": "./bin.js"
1210
},
1311
"files": [
1412
"dist",
@@ -25,6 +23,7 @@
2523
"build:modern": "cross-env BABEL_ENV=modern babel src -d dist/modern",
2624
"build": "yarn run clean && yarn build:legacy && yarn build:modern",
2725
"prepublish": "yarn build",
26+
"patch":"npm version patch && npm publish --update-readme --access public",
2827
"precommit": "lint-staged"
2928
},
3029
"devDependencies": {

src/utils/yarn.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ import * as fs from '../utils/fs';
1010
import * as logger from '../utils/fs';
1111
import { DEPENDENCY_TYPE_FLAGS_MAP, BOLT_VERSION } from '../constants';
1212

13-
function getLocalBinPath(): Promise<string> {
14-
return projectBinPath(__dirname);
15-
}
16-
1713
function depTypeToFlag(depType) {
1814
let flag = Object.keys(DEPENDENCY_TYPE_FLAGS_MAP).find(
1915
key => DEPENDENCY_TYPE_FLAGS_MAP[key] === depType

0 commit comments

Comments
 (0)