Skip to content

Commit df4f0d0

Browse files
committed
Remove npm package.json and readme
1 parent 4d18892 commit df4f0d0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
],
2323
"engines": {},
2424
"scripts": {
25-
"all": "npm run lint && npm run test && npm run build",
26-
"build": "npm run clean && npm run build:lib && npm run build:dist",
25+
"all": "yarn lint && yarn test && yarn build",
26+
"build": "yarn clean && yarn build:lib && yarn build:dist",
2727
"build:lib": "babel src --out-dir lib",
28-
"build:dist": "npm run build:dist:max && npm run build:dist:min",
28+
"build:dist": "yarn build:dist:max && yarn build:dist:min",
2929
"build:dist:max": "cross-env webpack --mode=development src/index.js --output-filename=css-vendor.js",
3030
"build:dist:min": "cross-env webpack --mode=production src/index.js --output-filename=css-vendor.min.js",
3131
"clean": "rimraf {lib,dist,tmp}/*",
@@ -34,7 +34,7 @@
3434
"test": "cross-env NODE_ENV=test karma start --single-run ",
3535
"test:watch": "cross-env NODE_ENV=test karma start",
3636
"bench": "cross-env NODE_ENV=benchmark karma start --single-run",
37-
"prepublishOnly": "npm run all"
37+
"prepublishOnly": "yarn all"
3838
},
3939
"license": "MIT",
4040
"main": "./lib/index",

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ console.log(cssVendor.supportedValue('display', 'flex')) // e.g. -webkit-flex
3333
## Run tests
3434

3535
```bash
36-
npm i
37-
npm test
36+
yarn
37+
yarn test
3838
```
3939

4040
## License

0 commit comments

Comments
 (0)