-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
buns
committed
Jan 11, 2021
1 parent
34a6445
commit c70e151
Showing
10 changed files
with
296 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,63 @@ | ||
{ | ||
"private": true, | ||
"workspaces": [ | ||
"packages/**" | ||
], | ||
"name": "siu", | ||
"version": "1.0.0-beta.7", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"author": "buns <[email protected]>", | ||
"license": "MIT", | ||
"bin": { | ||
"siu": "./bin/siu.js" | ||
}, | ||
"files": [ | ||
"bin", | ||
"dist" | ||
], | ||
"engines": { | ||
"node": ">=14.x" | ||
}, | ||
"scripts": { | ||
"preinstall": "node ./scripts/checkYarn.js", | ||
"test": "node ./scripts/test.mjs", | ||
"clean:dist": "rimraf -g packages/*/dist", | ||
"clean:dts": "rimraf -g packages/*/dist/{tsconfig.tsbuildinfo,dts} && rimraf -g packages/*/temp", | ||
"dts": "node ./scripts/dts.js && npm run clean:dts", | ||
"compile": "rollup -wc", | ||
"build": "npm run clean:dist && rollup -c && npm run dts", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", | ||
"release": "node scripts/release.js" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/api-extractor": "7.12.1", | ||
"@rollup/plugin-commonjs": "17.0.0", | ||
"@rollup/plugin-json": "4.1.0", | ||
"@rollup/plugin-node-resolve": "11.0.1", | ||
"@rollup/pluginutils": "4.1.0", | ||
"@types/jest": "26.0.19", | ||
"@types/node": "14.14.20", | ||
"@typescript-eslint/eslint-plugin": "4.12.0", | ||
"@typescript-eslint/parser": "4.12.0", | ||
"conventional-changelog-cli": "2.1.1", | ||
"cross-env": "7.0.3", | ||
"esbuild": "0.8.31", | ||
"eslint": "7.17.0", | ||
"eslint-config-prettier": "7.1.0", | ||
"eslint-plugin-prettier": "3.3.1", | ||
"execa": "5.0.0", | ||
"minimist": "1.2.5", | ||
"prettier": "2.2.1", | ||
"rimraf": "3.0.2", | ||
"rollup": "2.36.1", | ||
"rollup-plugin-node-externals": "2.2.0", | ||
"semver": "7.3.4", | ||
"typescript": "4.1.3" | ||
}, | ||
"dependencies": { | ||
"jest": "26.6.3", | ||
"ts-jest": "26.4.4", | ||
"validate-npm-package-name": "3.0.0" | ||
} | ||
"private": true, | ||
"workspaces": [ | ||
"packages/**" | ||
], | ||
"name": "siu", | ||
"version": "1.0.0-beta.8", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"author": "buns <[email protected]>", | ||
"license": "MIT", | ||
"bin": { | ||
"siu": "./bin/siu.js" | ||
}, | ||
"files": [ | ||
"bin", | ||
"dist" | ||
], | ||
"engines": { | ||
"node": ">=14.x" | ||
}, | ||
"scripts": { | ||
"preinstall": "node ./scripts/checkYarn.js", | ||
"test": "node ./scripts/test.mjs", | ||
"clean:dist": "rimraf -g packages/*/dist", | ||
"clean:dts": "rimraf -g packages/*/dist/{tsconfig.tsbuildinfo,dts} && rimraf -g packages/*/temp", | ||
"dts": "node ./scripts/dts.js && npm run clean:dts", | ||
"compile": "rollup -wc", | ||
"build": "npm run clean:dist && rollup -c && npm run dts", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", | ||
"release": "node scripts/release.js" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/api-extractor": "7.12.1", | ||
"@rollup/plugin-commonjs": "17.0.0", | ||
"@rollup/plugin-json": "4.1.0", | ||
"@rollup/plugin-node-resolve": "11.0.1", | ||
"@rollup/pluginutils": "4.1.0", | ||
"@types/jest": "26.0.19", | ||
"@types/node": "14.14.20", | ||
"@typescript-eslint/eslint-plugin": "4.12.0", | ||
"@typescript-eslint/parser": "4.12.0", | ||
"conventional-changelog-cli": "2.1.1", | ||
"cross-env": "7.0.3", | ||
"esbuild": "0.8.31", | ||
"eslint": "7.17.0", | ||
"eslint-config-prettier": "7.1.0", | ||
"eslint-plugin-prettier": "3.3.1", | ||
"execa": "5.0.0", | ||
"minimist": "1.2.5", | ||
"prettier": "2.2.1", | ||
"rimraf": "3.0.2", | ||
"rollup": "2.36.1", | ||
"rollup-plugin-node-externals": "2.2.0", | ||
"semver": "7.3.4", | ||
"typescript": "4.1.3" | ||
}, | ||
"dependencies": { | ||
"jest": "26.6.3", | ||
"ts-jest": "26.4.4", | ||
"validate-npm-package-name": "3.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
{ | ||
"name": "@siujs/builtin-build", | ||
"version": "1.0.0-beta.7", | ||
"description": "build of siujs", | ||
"keywords": [ | ||
"build", | ||
"siujs" | ||
], | ||
"author": "buns <[email protected]>", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/builtin-build.d.ts", | ||
"typings": "dist/builtin-build.d.ts", | ||
"directories": { | ||
"lib": "lib", | ||
"test": "__tests__" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siujs/siu.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/siujs/siu/issues" | ||
}, | ||
"homepage": "https://github.com/siujs/siu#readme", | ||
"peerDependencies": { | ||
"@siujs/core": "1.0.0-beta.7", | ||
"@siujs/utils": "1.0.0-beta.7", | ||
"esbuild": "^0.8.31", | ||
"rollup": "^2.36.1" | ||
}, | ||
"dependencies": { | ||
"@microsoft/api-extractor": "^7.12.1", | ||
"@rollup/plugin-commonjs": "^17.0.0", | ||
"@rollup/plugin-node-resolve": "^11.0.1", | ||
"@rollup/plugin-replace": "^2.3.4", | ||
"@rollup/pluginutils": "^4.1.0", | ||
"chalk": "^4.1.0", | ||
"fs-extra": "^9.0.1", | ||
"pretty-ms": "^7.0.1", | ||
"rollup-plugin-gzip": "^2.5.0", | ||
"rollup-plugin-node-externals": "^2.2.0", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"shelljs": "^0.8.4", | ||
"zlib": "^1.0.5" | ||
}, | ||
"devDependencies": { | ||
"@types/fs-extra": "^9.0.6" | ||
} | ||
"name": "@siujs/builtin-build", | ||
"version": "1.0.0-beta.8", | ||
"description": "build of siujs", | ||
"keywords": [ | ||
"build", | ||
"siujs" | ||
], | ||
"author": "buns <[email protected]>", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/builtin-build.d.ts", | ||
"typings": "dist/builtin-build.d.ts", | ||
"directories": { | ||
"lib": "lib", | ||
"test": "__tests__" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siujs/siu.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/siujs/siu/issues" | ||
}, | ||
"homepage": "https://github.com/siujs/siu#readme", | ||
"peerDependencies": { | ||
"@siujs/core": "1.0.0-beta.8", | ||
"@siujs/utils": "1.0.0-beta.8", | ||
"esbuild": "^0.8.31", | ||
"rollup": "^2.36.1" | ||
}, | ||
"dependencies": { | ||
"@microsoft/api-extractor": "^7.12.1", | ||
"@rollup/plugin-commonjs": "^17.0.0", | ||
"@rollup/plugin-node-resolve": "^11.0.1", | ||
"@rollup/plugin-replace": "^2.3.4", | ||
"@rollup/pluginutils": "^4.1.0", | ||
"chalk": "^4.1.0", | ||
"fs-extra": "^9.0.1", | ||
"pretty-ms": "^7.0.1", | ||
"rollup-plugin-gzip": "^2.5.0", | ||
"rollup-plugin-node-externals": "^2.2.0", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"shelljs": "^0.8.4", | ||
"zlib": "^1.0.5" | ||
}, | ||
"devDependencies": { | ||
"@types/fs-extra": "^9.0.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.