Skip to content

Commit

Permalink
chore: align scripts to use pnpm run
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Nov 17, 2019
1 parent e3e20e9 commit 3d6132a
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 34 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ This repository houses plugins that Rollup considers critical to every day use o

## Plugins Found Here

| | |
|--- |---|
| [alias](packages/alias) | Define and resolve aliases for bundle dependencies |
| [auto-install](packages/auto-install) | Automatically install dependencies that are imported by a bundle. |
| [beep](packages/beep) | System beeps on errors and warnings |
| [buble](packages/buble) | Compile ES2015 with buble |
| [dsv](packages/dsv) | Convert .csv and .tsv files into JavaScript modules with d3-dsv |
| [inject](packages/inject) | Scan modules for global variables and injects `import` statements where necessary |
| [json](packages/json) | Convert .json files to ES6 modules |
| [replace](packages/replace) | Replace strings in files while bundling |
| | |
| ------------------------------------- | ----------------------------------------------------------------------------------------- |
| [alias](packages/alias) | Define and resolve aliases for bundle dependencies |
| [auto-install](packages/auto-install) | Automatically install dependencies that are imported by a bundle. |
| [beep](packages/beep) | System beeps on errors and warnings |
| [buble](packages/buble) | Compile ES2015 with buble |
| [dsv](packages/dsv) | Convert .csv and .tsv files into JavaScript modules with d3-dsv |
| [inject](packages/inject) | Scan modules for global variables and injects `import` statements where necessary |
| [json](packages/json) | Convert .json files to ES6 modules |
| [replace](packages/replace) | Replace strings in files while bundling |
| [strip](packages/strip) | Remove debugger statements and functions like assert.equal and console.log from your code |
| [wasm](packages/wasm) | Import WebAssembly code with Rollup |
| [yaml](packages/yaml) | Convert YAML files to ES6 modules |
| | |
| [wasm](packages/wasm) | Import WebAssembly code with Rollup |
| [yaml](packages/yaml) | Convert YAML files to ES6 modules |
| | |

## Contributing

Expand Down
6 changes: 3 additions & 3 deletions packages/alias/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"lint:js": "eslint --fix --cache src test",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"pretest": "npm run build",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint && pnpm run test",
"pretest": "pnpm run build",
"security": "echo 'pnpm needs `npm audit` support'",
"test": "ava"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/buble/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"lint:js": "eslint --fix --cache src test",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run test:ts",
"pretest": "npm run build",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint && pnpm run test && pnpm run test:ts",
"pretest": "pnpm run build",
"security": "echo 'pnpm needs `npm audit` support'",
"test": "ava",
"test:ts": "tsc index.d.ts test/types.ts --noEmit"
Expand Down
6 changes: 3 additions & 3 deletions packages/dsv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"lint:js": "eslint --fix --cache src test",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"pretest": "npm run build",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint",
"pretest": "pnpm run build",
"security": "echo 'pnpm needs `npm audit` support'",
"test": "ava"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/inject/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"lint:js": "eslint --fix --cache src test",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"pretest": "npm run build",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint && pnpm run test",
"pretest": "pnpm run build",
"security": "echo 'pnpm needs `npm audit` support'",
"test": "ava",
"test:ts": "tsc index.d.ts test/types.ts --noEmit"
Expand Down
6 changes: 3 additions & 3 deletions packages/json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"lint:js": "eslint --fix --cache src test",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"pretest": "npm run build",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint && pnpm run test",
"pretest": "pnpm run build",
"security": "echo 'pnpm needs `npm audit` support'",
"test": "ava",
"test:ts": "tsc index.d.ts test/types.ts --noEmit"
Expand Down
6 changes: 3 additions & 3 deletions packages/replace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"lint:js": "eslint --fix --cache src test",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"pretest": "npm run build",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint && pnpm run test",
"pretest": "pnpm run build",
"security": "echo 'pnpm needs `npm audit` support'",
"test": "ava",
"test:ts": "tsc index.d.ts test/types.ts --noEmit"
Expand Down
6 changes: 3 additions & 3 deletions packages/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"lint:js": "eslint --fix --cache src test",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"pretest": "npm run build",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint",
"pretest": "pnpm run build",
"security": "echo 'pnpm needs `npm audit` support'",
"test": "ava"
},
Expand Down

0 comments on commit 3d6132a

Please sign in to comment.