Skip to content

Commit e8aeffc

Browse files
⚙️ Chore(enviroment,./packages/*)!: update all deps + add script separators
1 parent 6b7c0c6 commit e8aeffc

File tree

5 files changed

+2700
-2054
lines changed

5 files changed

+2700
-2054
lines changed

package.json

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,47 @@
1313
"license": "MIT",
1414
"type": "module",
1515
"scripts": {
16-
"dev": "turbo dev",
17-
"build": "turbo build",
18-
"build:npm": "turbo build:npm",
19-
"start": "turbo start",
16+
"------------------------INSTALLATION-------------------": "",
17+
"preinstall": "husky init",
18+
"prepare": "husky",
19+
"pre": "turbo pre",
20+
"pre:husky": "git add . && lint-staged",
21+
"------------------------UTILS--------------------------": "",
2022
"lint": "turbo lint",
2123
"lint:fix": "turbo lint:fix",
22-
"lint:test": "turbo lint:fix",
24+
"lint:next": "turbo lint:next",
25+
"lint:test": "turbo lint:test",
2326
"format": "turbo format",
24-
"bench": "turbo bench",
2527
"clean": "turbo clean",
28+
"link-cli": "turbo link-cli",
29+
"link-cli:dev": "turbo link-cli",
30+
"unlink-cli:dev": "turbo link-cli",
31+
"------------------------BUILDS-------------------------": "",
32+
"dev": "turbo dev",
33+
"build": "turbo build",
34+
"build:dev": "turbo build:dev",
35+
"build:prod": "turbo build:prod",
36+
"build:npm": "turbo build:npm",
37+
"------------------------DEPLOYS------------------------": "",
38+
"start:dev": "turbo start:dev",
39+
"start:prod": "turbo start:prod",
2640
"npm:prepack": "turbo npm:prepack",
2741
"npm:postpack": "turbo npm:postpack",
2842
"npm:version": "changeset version",
2943
"npm:publish": "changeset publish",
30-
"preinstall": "husky init",
31-
"pre": "turbo pre",
32-
"pre:husky": "git add . && lint-staged",
33-
"prepare": "husky",
34-
"test": "turbo test"
44+
"commands:dev": "turbo commands:dev",
45+
"commands:prod": "turbo commands:prod",
46+
"------------------------TESTS--------------------------": "",
47+
"test": "turbo test",
48+
"bench": "turbo bench"
3549
},
3650
"devDependencies": {
37-
"@changesets/cli": "^2.27.8",
51+
"@changesets/cli": "^2.29.1",
3852
"@types/lint-staged": "~13.3.0",
39-
"commitsmile": "^0.6.1",
40-
"globals": "^15.9.0",
41-
"husky": "^9.1.6",
42-
"lint-staged": "^15.2.10",
53+
"commitsmile": "^1.0.3",
54+
"globals": "^16.0.0",
55+
"husky": "^9.1.7",
56+
"lint-staged": "^15.5.1",
4357
"turbo": "latest"
4458
},
4559
"engines": {

packages/semver/package.json

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,21 @@
2121
"type": "module",
2222
"main": "index.js",
2323
"scripts": {
24-
"bench": "vitest bench",
25-
"build": "pnpm tsup --config ./config/tsuprc/tsup.prod.ts ",
26-
"build:npm": "pnpm npm:prepack && pnpm tsup --config ./config/tsuprc/tsup.prod.ts && pnpm npm:postpack",
27-
"dev": "pnpm tsup --config ./config/tsuprc/tsup.dev.ts",
24+
"------------------------UTILS------------------------": "",
2825
"format": "pnpm prettier . --write && pnpm prettier . --check",
2926
"lint": "eslint .",
3027
"lint:fix": "eslint . --fix",
3128
"npm:postpack": "clean-package restore",
3229
"npm:prepack": "clean-package",
30+
"------------------------BUILDS------------------------": "",
31+
"build:prod": "pnpm tsup --config ./config/tsuprc/tsup.prod.ts ",
32+
"build:npm": "pnpm npm:prepack && pnpm tsup --config ./config/tsuprc/tsup.prod.ts && pnpm npm:postpack",
33+
"build:dev": "pnpm tsup --config ./config/tsuprc/tsup.dev.ts",
34+
"------------------------DEPLOYS------------------------": "",
3335
"prepublishOnly": "pnpm build:npm",
34-
"test": "vitest"
36+
"------------------------TESTS------------------------": "",
37+
"test": "vitest",
38+
"bench": "vitest bench"
3539
},
3640
"lint-staged": {
3741
"*": [
@@ -41,23 +45,23 @@
4145
]
4246
},
4347
"dependencies": {
44-
"oh-my-error": "2.0.0-prerelease.0"
48+
"oh-my-error": "2.0.1"
4549
},
4650
"devDependencies": {
4751
"@esplugins/no-internal-exports": "^1.0.0",
48-
"@ineedj/eslintrc": "~1.2.2",
52+
"@ineedj/eslintrc": "~1.2.4",
4953
"@ineedj/prettierrc": "^2.0.0",
5054
"@ineedj/tsconfig": "^1.0.0",
51-
"@types/eslint": "~8.56.12",
52-
"@types/node": "^22.2.0",
55+
"@types/eslint": "~9.6.1",
56+
"@types/node": "^22.14.1",
5357
"@types/safe-regex": "^1.1.6",
5458
"clean-package": "^2.2.0",
5559
"esbuild-plugin-copy": "^2.1.1",
56-
"eslint": "~8.57.0",
57-
"prettier": "^3.3.3",
58-
"tsup": "^8.1.0",
59-
"typescript": "^5.6.2",
60-
"vitest": "^2.0.5"
60+
"eslint": "~9.24.0",
61+
"prettier": "^3.5.3",
62+
"tsup": "^8.4.0",
63+
"typescript": "^5.8.3",
64+
"vitest": "^3.1.1"
6165
},
6266
"publishConfig": {
6367
"access": "public",

packages/validate-npm-package-name/package.json

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,19 @@
2323
"type": "module",
2424
"main": "index.js",
2525
"scripts": {
26-
"build": "pnpm tsup --config ./config/tsuprc/tsup.prod.ts ",
27-
"build:npm": "pnpm npm:prepack && pnpm tsup --config ./config/tsuprc/tsup.prod.ts && pnpm npm:postpack",
28-
"dev": "pnpm tsup --config ./config/tsuprc/tsup.dev.ts",
26+
"------------------------UTILS------------------------": "",
2927
"format": "pnpm prettier . --write && pnpm prettier . --check",
3028
"lint": "eslint .",
3129
"lint:fix": "eslint . --fix",
3230
"npm:postpack": "clean-package restore",
3331
"npm:prepack": "clean-package",
32+
"------------------------BUILDS------------------------": "",
33+
"build:prod": "pnpm tsup --config ./config/tsuprc/tsup.prod.ts ",
34+
"build:npm": "pnpm npm:prepack && pnpm tsup --config ./config/tsuprc/tsup.prod.ts && pnpm npm:postpack",
35+
"build:dev": "pnpm tsup --config ./config/tsuprc/tsup.dev.ts",
36+
"------------------------DEPLOYS------------------------": "",
3437
"prepublishOnly": "pnpm build:npm",
38+
"------------------------TESTS------------------------": "",
3539
"test": "vitest"
3640
},
3741
"lint-staged": {
@@ -42,22 +46,22 @@
4246
]
4347
},
4448
"dependencies": {
45-
"oh-my-error": "^2.0.0-prerelease.0"
49+
"oh-my-error": "^2.0.1"
4650
},
4751
"devDependencies": {
4852
"@esplugins/no-internal-exports": "^1.0.0",
49-
"@ineedj/eslintrc": "^1.2.2",
53+
"@ineedj/eslintrc": "^1.2.4",
5054
"@ineedj/prettierrc": "^2.0.0",
5155
"@ineedj/tsconfig": "^1.0.0",
52-
"@types/eslint": "~8.56.12",
53-
"@types/node": "^22.2.0",
56+
"@types/eslint": "~9.6.1",
57+
"@types/node": "^22.14.1",
5458
"clean-package": "^2.2.0",
5559
"esbuild-plugin-copy": "^2.1.1",
56-
"eslint": "~8.57.0",
57-
"prettier": "^3.3.3",
58-
"tsup": "^8.1.0",
59-
"typescript": "^5.5.4",
60-
"vitest": "^2.0.5"
60+
"eslint": "~9.24.0",
61+
"prettier": "^3.5.3",
62+
"tsup": "^8.4.0",
63+
"typescript": "^5.8.3",
64+
"vitest": "^3.1.1"
6165
},
6266
"publishConfig": {
6367
"access": "public",

0 commit comments

Comments
 (0)