[READ-ONLY] Mirror of https://github.com/danielroe/siroc. Zero-config build tooling for Node
bundle node package rollup typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: update scripts

Daniel Roe (Jun 9, 2020, 9:49 PM +0100) 67abb4bb 47d72652

+9 -14
+3 -2
package.json
··· 18 18 "license": "MIT", 19 19 "private": true, 20 20 "scripts": { 21 - "build": "rollup -c", 21 + "bootstrap": "rollup -c", 22 + "build": "siroc build", 22 23 "lint": "run-s lint:all:*", 23 24 "lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .", 24 25 "lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts,vue}\"", 25 26 "lint:eslint": "eslint --fix", 26 27 "lint:prettier": "prettier --write --loglevel warn", 27 - "prepare": "yarn build", 28 + "prepare": "yarn bootstrap && yarn build", 28 29 "prepublishOnly": "yarn lint && yarn test", 29 30 "release": "release-it", 30 31 "test": "run-s test:*",
+2 -4
packages/cli/package.json
··· 21 21 "!**/*.map" 22 22 ], 23 23 "scripts": { 24 - "build": "yarn clean && yarn compile", 25 - "clean": "rm -rf dist/*", 26 - "compile": "rollup -c", 24 + "build": "siroc build", 27 25 "lint": "run-s lint:all:*", 28 26 "lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .", 29 27 "lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts,vue}\"", ··· 35 33 "test": "run-s test:*", 36 34 "test:types": "tsd", 37 35 "test:unit": "jest", 38 - "watch": "yarn compile -w" 36 + "watch": "yarn build -w" 39 37 }, 40 38 "dependencies": { 41 39 "@siroc/core": "0.0.1",
+2 -4
packages/core/package.json
··· 20 20 "!**/*.map" 21 21 ], 22 22 "scripts": { 23 - "build": "yarn clean && yarn compile", 24 - "clean": "rm -rf packages/*/dist packages/*/bin", 25 - "compile": "rollup -c", 23 + "build": "siroc build", 26 24 "lint": "run-s lint:all:*", 27 25 "lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .", 28 26 "lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts,vue}\"", ··· 34 32 "test": "run-s test:*", 35 33 "test:types": "tsd", 36 34 "test:unit": "jest", 37 - "watch": "yarn compile -w" 35 + "watch": "yarn build -w" 38 36 }, 39 37 "dependencies": { 40 38 "@rollup/plugin-alias": "^3.1.1",
+2 -4
packages/siroc/package.json
··· 20 20 "!**/*.map" 21 21 ], 22 22 "scripts": { 23 - "build": "yarn clean && yarn compile", 24 - "clean": "rm -rf dist/*", 25 - "compile": "rollup -c", 23 + "build": "siroc build", 26 24 "lint": "run-s lint:all:*", 27 25 "lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .", 28 26 "lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts,vue}\"", ··· 34 32 "test": "run-s test:*", 35 33 "test:types": "tsd", 36 34 "test:unit": "jest", 37 - "watch": "yarn compile -w" 35 + "watch": "yarn build -w" 38 36 }, 39 37 "dependencies": { 40 38 "@siroc/cli": "0.0.1",