@adbayb/stack 0.0.0-next-c0bb748 → 0.0.0-next-36b2628
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.
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { writeFile, chmod, mkdir, symlink, rm } from 'node:fs/promises';
|
|
|
5
5
|
import { existsSync, cpSync, readFileSync, renameSync, writeFileSync, readdirSync } from 'node:fs';
|
|
6
6
|
import { fdir } from 'fdir';
|
|
7
7
|
|
|
8
|
-
const require = createRequire(import.meta.url);
|
|
8
|
+
const require$1 = createRequire(import.meta.url);
|
|
9
9
|
function assert(expectedCondition, createError) {
|
|
10
10
|
if (!expectedCondition) {
|
|
11
11
|
throw createError();
|
|
@@ -100,7 +100,7 @@ const getStackCommand = (command, isNodeRuntime = true)=>{
|
|
|
100
100
|
].join(" ");
|
|
101
101
|
};
|
|
102
102
|
const hasDependency = (packageName)=>{
|
|
103
|
-
return Boolean(require.resolve(packageName));
|
|
103
|
+
return Boolean(require$1.resolve(packageName));
|
|
104
104
|
};
|
|
105
105
|
const setPackageManager = async ()=>{
|
|
106
106
|
/**
|
|
@@ -195,7 +195,7 @@ const ESLINT_EXTENSIONS = [
|
|
|
195
195
|
"mdx"
|
|
196
196
|
];
|
|
197
197
|
|
|
198
|
-
var version = "0.0.0-next-
|
|
198
|
+
var version = "0.0.0-next-36b2628";
|
|
199
199
|
|
|
200
200
|
const createWatchCommand = (program)=>{
|
|
201
201
|
program.command({
|
|
@@ -602,7 +602,7 @@ const checkDependency = async ()=>{
|
|
|
602
602
|
const packages = JSON.parse(stdout).map((package_)=>{
|
|
603
603
|
const packagePath = join(package_.path, "package.json");
|
|
604
604
|
assert(package_.name, ()=>createPackageError(`\`${packagePath}\` must have a name field.`));
|
|
605
|
-
const packageContent = require(packagePath);
|
|
605
|
+
const packageContent = require$1(packagePath);
|
|
606
606
|
const peerDependencies = packageContent.peerDependencies ?? {};
|
|
607
607
|
const devDependencies = packageContent.devDependencies ?? {};
|
|
608
608
|
const dependencies = packageContent.dependencies ?? {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adbayb/stack",
|
|
3
|
-
"version": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-36b2628",
|
|
4
4
|
"description": "My opinionated JavaScript-based toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stack",
|
|
@@ -43,36 +43,36 @@
|
|
|
43
43
|
"@changesets/cli": "^2.29.7",
|
|
44
44
|
"@commitlint/cli": "^20.1.0",
|
|
45
45
|
"@commitlint/config-conventional": "^20.0.0",
|
|
46
|
-
"@eslint-react/eslint-plugin": "^2.
|
|
47
|
-
"@eslint/compat": "^
|
|
48
|
-
"@stylistic/eslint-plugin": "^5.
|
|
49
|
-
"@vitest/eslint-plugin": "^1.3
|
|
50
|
-
"eslint": "^9.
|
|
46
|
+
"@eslint-react/eslint-plugin": "^2.3.5",
|
|
47
|
+
"@eslint/compat": "^2.0.0",
|
|
48
|
+
"@stylistic/eslint-plugin": "^5.6.1",
|
|
49
|
+
"@vitest/eslint-plugin": "^1.4.3",
|
|
50
|
+
"eslint": "^9.39.1",
|
|
51
51
|
"eslint-config-prettier": "^10.1.8",
|
|
52
52
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
53
|
-
"eslint-plugin-depend": "^1.
|
|
53
|
+
"eslint-plugin-depend": "^1.4.0",
|
|
54
54
|
"eslint-plugin-import-x": "^4.16.1",
|
|
55
55
|
"eslint-plugin-jest-formatting": "^3.1.0",
|
|
56
|
-
"eslint-plugin-jsdoc": "^
|
|
56
|
+
"eslint-plugin-jsdoc": "^61.3.0",
|
|
57
57
|
"eslint-plugin-mdx": "^3.6.2",
|
|
58
58
|
"eslint-plugin-n": "^17.23.1",
|
|
59
59
|
"eslint-plugin-prettier": "^5.5.4",
|
|
60
|
-
"eslint-plugin-react-hooks": "^
|
|
60
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
61
61
|
"eslint-plugin-sonarjs": "^3.0.5",
|
|
62
62
|
"eslint-plugin-sort-keys-custom-order": "^2.2.1",
|
|
63
|
-
"eslint-plugin-unicorn": "^
|
|
63
|
+
"eslint-plugin-unicorn": "^62.0.0",
|
|
64
64
|
"fdir": "^6.5.0",
|
|
65
|
-
"globals": "^16.
|
|
65
|
+
"globals": "^16.5.0",
|
|
66
66
|
"prettier": "^3.6.2",
|
|
67
67
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
68
68
|
"termost": "^1.8.0",
|
|
69
|
-
"turbo": "^2.
|
|
69
|
+
"turbo": "^2.6.1",
|
|
70
70
|
"typescript": "^5.9.3",
|
|
71
|
-
"typescript-eslint": "^8.
|
|
71
|
+
"typescript-eslint": "^8.47.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@types/node": "
|
|
75
|
-
"quickbundle": "2.
|
|
74
|
+
"@types/node": "24.10.1",
|
|
75
|
+
"quickbundle": "2.15.0"
|
|
76
76
|
},
|
|
77
77
|
"publishConfig": {
|
|
78
78
|
"access": "public",
|