build-ts 8.2.1 → 8.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +16 -15
package/README.md CHANGED
@@ -63,8 +63,8 @@ cd test-fixtures/lib-react && npx build-ts lib
63
63
  ## Run TypeScript code with arguments
64
64
 
65
65
  ```sh
66
- echo "console.log(process.argv)" > test.ts
67
- npx build-ts run test.ts -- --foo bar
66
+ echo "console.log(process.argv)" > example.ts
67
+ npx build-ts run example.ts -- --foo bar
68
68
  ```
69
69
 
70
70
  The output is like this:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-ts",
3
- "version": "8.2.1",
3
+ "version": "8.2.2",
4
4
  "repository": "github:WillBooster/build-ts",
5
5
  "license": "UNLICENSED",
6
6
  "author": "WillBooster Inc.",
@@ -17,7 +17,7 @@
17
17
  "babel.*"
18
18
  ],
19
19
  "scripts": {
20
- "build": "yarn start app",
20
+ "build": "wb buildIfNeeded --command 'yarn start app'",
21
21
  "cleanup": "yarn format && yarn lint-fix",
22
22
  "format": "sort-package-json && yarn prettify",
23
23
  "_postinstall": "husky install",
@@ -44,16 +44,16 @@
44
44
  "@rollup/plugin-babel": "6.0.3",
45
45
  "@rollup/plugin-commonjs": "25.0.4",
46
46
  "@rollup/plugin-json": "6.0.0",
47
- "@rollup/plugin-node-resolve": "15.1.0",
47
+ "@rollup/plugin-node-resolve": "15.2.0",
48
48
  "@rollup/plugin-replace": "5.0.2",
49
49
  "@rollup/plugin-terser": "0.4.3",
50
- "@rollup/pluginutils": "5.0.2",
51
- "@willbooster/shared-lib-node": "2.7.2",
50
+ "@rollup/pluginutils": "5.0.3",
51
+ "@willbooster/shared-lib-node": "2.8.1",
52
52
  "babel-plugin-polyfill-corejs3": "0.8.3",
53
53
  "babel-plugin-transform-remove-console": "6.9.4",
54
54
  "chalk": "5.3.0",
55
- "core-js": "3.32.0",
56
- "core-js-pure": "3.32.0",
55
+ "core-js": "3.32.1",
56
+ "core-js-pure": "3.32.1",
57
57
  "date-time": "4.0.0",
58
58
  "pretty-ms": "8.0.0",
59
59
  "rollup": "3.28.0",
@@ -72,33 +72,34 @@
72
72
  "@types/babel__plugin-transform-runtime": "7.9.2",
73
73
  "@types/babel__preset-env": "7.9.2",
74
74
  "@types/eslint": "8.44.2",
75
- "@types/node": "20.4.10",
75
+ "@types/node": "20.5.1",
76
76
  "@types/signal-exit": "3.0.1",
77
77
  "@types/yargs": "17.0.24",
78
- "@typescript-eslint/eslint-plugin": "6.3.0",
79
- "@typescript-eslint/parser": "6.3.0",
78
+ "@typescript-eslint/eslint-plugin": "6.4.0",
79
+ "@typescript-eslint/parser": "6.4.0",
80
80
  "@willbooster/babel-configs": "1.3.0",
81
81
  "@willbooster/eslint-config-ts": "10.4.0",
82
82
  "@willbooster/prettier-config": "9.1.1",
83
+ "@willbooster/wb": "4.8.3",
83
84
  "conventional-changelog-conventionalcommits": "6.1.0",
84
85
  "eslint": "8.47.0",
85
86
  "eslint-config-prettier": "9.0.0",
86
87
  "eslint-import-resolver-typescript": "3.6.0",
87
- "eslint-plugin-import": "2.28.0",
88
+ "eslint-plugin-import": "2.28.1",
88
89
  "eslint-plugin-sort-class-members": "1.18.0",
89
90
  "eslint-plugin-sort-destructure-keys": "1.5.0",
90
91
  "eslint-plugin-unicorn": "48.0.1",
91
92
  "husky": "8.0.3",
92
- "lint-staged": "13.2.3",
93
+ "lint-staged": "14.0.0",
93
94
  "micromatch": "4.0.5",
94
95
  "pinst": "3.0.0",
95
- "prettier": "3.0.1",
96
+ "prettier": "3.0.2",
96
97
  "semantic-release": "21.0.7",
97
98
  "sort-package-json": "2.5.1",
98
99
  "type-fest": "4.2.0",
99
- "vitest": "0.34.1"
100
+ "vitest": "0.34.2"
100
101
  },
101
- "packageManager": "yarn@4.0.0-rc.48",
102
+ "packageManager": "yarn@4.0.0-rc.49",
102
103
  "engines": {
103
104
  "node": ">=18"
104
105
  }