create-rstack 1.0.0 → 1.0.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.
- package/README.md +7 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +14 -8
- package/package.json +5 -5
- package/template-eslint/react-js/eslint.config.mjs +2 -2
- package/template-eslint/react-js/package.json +4 -4
- package/template-eslint/react-ts/eslint.config.mjs +2 -2
- package/template-eslint/react-ts/package.json +5 -5
- package/template-eslint/svelte-js/package.json +2 -2
- package/template-eslint/svelte-ts/package.json +3 -3
- package/template-eslint/vanilla-js/package.json +2 -2
- package/template-eslint/vanilla-ts/package.json +3 -3
- package/template-eslint/vue-js/package.json +3 -3
- package/template-eslint/vue-ts/package.json +4 -4
- package/template-biome/node_modules/.bin/biome +0 -17
- package/template-eslint/react-js/node_modules/.bin/acorn +0 -17
- package/template-eslint/react-js/node_modules/.bin/eslint +0 -17
- package/template-eslint/react-js/node_modules/.bin/jiti +0 -17
- package/template-eslint/react-ts/node_modules/.bin/acorn +0 -17
- package/template-eslint/react-ts/node_modules/.bin/eslint +0 -17
- package/template-eslint/react-ts/node_modules/.bin/jiti +0 -17
- package/template-eslint/react-ts/node_modules/.bin/tsc +0 -17
- package/template-eslint/react-ts/node_modules/.bin/tsserver +0 -17
- package/template-eslint/svelte-js/node_modules/.bin/acorn +0 -17
- package/template-eslint/svelte-js/node_modules/.bin/eslint +0 -17
- package/template-eslint/svelte-js/node_modules/.bin/jiti +0 -17
- package/template-eslint/svelte-ts/node_modules/.bin/acorn +0 -17
- package/template-eslint/svelte-ts/node_modules/.bin/eslint +0 -17
- package/template-eslint/svelte-ts/node_modules/.bin/jiti +0 -17
- package/template-eslint/svelte-ts/node_modules/.bin/tsc +0 -17
- package/template-eslint/svelte-ts/node_modules/.bin/tsserver +0 -17
- package/template-eslint/vanilla-js/node_modules/.bin/acorn +0 -17
- package/template-eslint/vanilla-js/node_modules/.bin/eslint +0 -17
- package/template-eslint/vanilla-js/node_modules/.bin/jiti +0 -17
- package/template-eslint/vanilla-ts/node_modules/.bin/acorn +0 -17
- package/template-eslint/vanilla-ts/node_modules/.bin/eslint +0 -17
- package/template-eslint/vanilla-ts/node_modules/.bin/jiti +0 -17
- package/template-eslint/vanilla-ts/node_modules/.bin/tsc +0 -17
- package/template-eslint/vanilla-ts/node_modules/.bin/tsserver +0 -17
- package/template-eslint/vue-js/node_modules/.bin/acorn +0 -17
- package/template-eslint/vue-js/node_modules/.bin/eslint +0 -17
- package/template-eslint/vue-js/node_modules/.bin/jiti +0 -17
- package/template-eslint/vue-ts/node_modules/.bin/acorn +0 -17
- package/template-eslint/vue-ts/node_modules/.bin/eslint +0 -17
- package/template-eslint/vue-ts/node_modules/.bin/jiti +0 -17
- package/template-eslint/vue-ts/node_modules/.bin/tsc +0 -17
- package/template-eslint/vue-ts/node_modules/.bin/tsserver +0 -17
- package/template-prettier/node_modules/.bin/prettier +0 -17
package/README.md
CHANGED
|
@@ -17,6 +17,13 @@ A shared package for create-rspack, create-rsbuild, create-rspress and create-rs
|
|
|
17
17
|
npm add create-rstack -D
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
See: [create-rsbuild](https://github.com/web-infra-dev/rsbuild/tree/main/packages/create-rsbuild).
|
|
23
|
+
|
|
24
|
+

|
|
25
|
+
|
|
26
|
+
|
|
20
27
|
## License
|
|
21
28
|
|
|
22
29
|
[MIT](./LICENSE).
|
package/dist/index.d.ts
CHANGED
|
@@ -9,9 +9,10 @@ export type Argv = {
|
|
|
9
9
|
tools?: string | string[];
|
|
10
10
|
};
|
|
11
11
|
export type ESLintTemplateName = 'vanilla-js' | 'vanilla-ts' | 'react-js' | 'react-ts' | 'vue-ts' | 'vue-js' | 'svelte-js' | 'svelte-ts';
|
|
12
|
-
export declare function create({ name, root, templates, getTemplateName, mapESLintTemplate, }: {
|
|
12
|
+
export declare function create({ name, root, templates, skipFiles, getTemplateName, mapESLintTemplate, }: {
|
|
13
13
|
name: string;
|
|
14
14
|
root: string;
|
|
15
|
+
skipFiles?: string[];
|
|
15
16
|
templates: string[];
|
|
16
17
|
getTemplateName: (argv: Argv) => Promise<string>;
|
|
17
18
|
mapESLintTemplate: (templateName: string) => ESLintTemplateName | null;
|
package/dist/index.js
CHANGED
|
@@ -1158,7 +1158,7 @@ async function getTools({ tools, dir, template }) {
|
|
|
1158
1158
|
function upperFirst(str) {
|
|
1159
1159
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
1160
1160
|
}
|
|
1161
|
-
async function create({ name, root, templates, getTemplateName, mapESLintTemplate }) {
|
|
1161
|
+
async function create({ name, root, templates, skipFiles, getTemplateName, mapESLintTemplate }) {
|
|
1162
1162
|
const argv = minimist_default()(process.argv.slice(2), {
|
|
1163
1163
|
alias: {
|
|
1164
1164
|
h: 'help',
|
|
@@ -1217,13 +1217,15 @@ async function create({ name, root, templates, getTemplateName, mapESLintTemplat
|
|
|
1217
1217
|
copyFolder({
|
|
1218
1218
|
from: commonFolder,
|
|
1219
1219
|
to: distFolder,
|
|
1220
|
-
version
|
|
1220
|
+
version,
|
|
1221
|
+
skipFiles
|
|
1221
1222
|
});
|
|
1222
1223
|
copyFolder({
|
|
1223
1224
|
from: srcFolder,
|
|
1224
1225
|
to: distFolder,
|
|
1225
1226
|
version,
|
|
1226
|
-
packageName
|
|
1227
|
+
packageName,
|
|
1228
|
+
skipFiles
|
|
1227
1229
|
});
|
|
1228
1230
|
const packageRoot = external_node_path_namespaceObject["default"].resolve(src_dirname, '..');
|
|
1229
1231
|
for (const tool of tools){
|
|
@@ -1238,6 +1240,7 @@ async function create({ name, root, templates, getTemplateName, mapESLintTemplat
|
|
|
1238
1240
|
from: subFolder,
|
|
1239
1241
|
to: distFolder,
|
|
1240
1242
|
version,
|
|
1243
|
+
skipFiles,
|
|
1241
1244
|
isMergePackageJson: true
|
|
1242
1245
|
});
|
|
1243
1246
|
} else {
|
|
@@ -1245,6 +1248,7 @@ async function create({ name, root, templates, getTemplateName, mapESLintTemplat
|
|
|
1245
1248
|
from: toolFolder,
|
|
1246
1249
|
to: distFolder,
|
|
1247
1250
|
version,
|
|
1251
|
+
skipFiles,
|
|
1248
1252
|
isMergePackageJson: true
|
|
1249
1253
|
});
|
|
1250
1254
|
}
|
|
@@ -1285,20 +1289,21 @@ function mergePackageJson(targetPackage, extraPackage) {
|
|
|
1285
1289
|
}
|
|
1286
1290
|
external_node_fs_namespaceObject["default"].writeFileSync(targetPackage, `${JSON.stringify(mergedJson, null, 2)}\n`);
|
|
1287
1291
|
}
|
|
1288
|
-
function copyFolder({ from, to, version, packageName, isMergePackageJson }) {
|
|
1292
|
+
function copyFolder({ from, to, version, packageName, isMergePackageJson, skipFiles = [] }) {
|
|
1289
1293
|
const renameFiles = {
|
|
1290
1294
|
gitignore: '.gitignore'
|
|
1291
1295
|
};
|
|
1292
1296
|
// Skip local files
|
|
1293
|
-
const
|
|
1297
|
+
const allSkipFiles = [
|
|
1294
1298
|
'node_modules',
|
|
1295
|
-
'dist'
|
|
1299
|
+
'dist',
|
|
1300
|
+
...skipFiles
|
|
1296
1301
|
];
|
|
1297
1302
|
external_node_fs_namespaceObject["default"].mkdirSync(to, {
|
|
1298
1303
|
recursive: true
|
|
1299
1304
|
});
|
|
1300
1305
|
for (const file of external_node_fs_namespaceObject["default"].readdirSync(from)){
|
|
1301
|
-
if (
|
|
1306
|
+
if (allSkipFiles.includes(file)) {
|
|
1302
1307
|
continue;
|
|
1303
1308
|
}
|
|
1304
1309
|
const srcFile = external_node_path_namespaceObject["default"].resolve(from, file);
|
|
@@ -1308,7 +1313,8 @@ function copyFolder({ from, to, version, packageName, isMergePackageJson }) {
|
|
|
1308
1313
|
copyFolder({
|
|
1309
1314
|
from: srcFile,
|
|
1310
1315
|
to: distFile,
|
|
1311
|
-
version
|
|
1316
|
+
version,
|
|
1317
|
+
skipFiles
|
|
1312
1318
|
});
|
|
1313
1319
|
} else if (file === 'package.json') {
|
|
1314
1320
|
const targetPackage = external_node_path_namespaceObject["default"].resolve(to, 'package.json');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rstack",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Create a new Rstack project",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@biomejs/biome": "^1.8.3",
|
|
33
33
|
"@clack/prompts": "^0.7.0",
|
|
34
|
-
"@rslib/core": "0.0.
|
|
34
|
+
"@rslib/core": "0.0.5",
|
|
35
35
|
"@types/minimist": "^1.2.5",
|
|
36
|
-
"@types/node": "18.
|
|
36
|
+
"@types/node": "18.19.50",
|
|
37
37
|
"deepmerge": "^4.3.1",
|
|
38
38
|
"minimist": "^1.2.8",
|
|
39
|
-
"rslog": "^1.2.
|
|
39
|
+
"rslog": "^1.2.3",
|
|
40
40
|
"simple-git-hooks": "^2.11.1",
|
|
41
|
-
"typescript": "^5.
|
|
41
|
+
"typescript": "^5.6.2"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { fixupConfigRules
|
|
1
|
+
import { fixupConfigRules } from '@eslint/compat';
|
|
2
2
|
import js from '@eslint/js';
|
|
3
3
|
import reactHooks from 'eslint-plugin-react-hooks';
|
|
4
4
|
import reactJsx from 'eslint-plugin-react/configs/jsx-runtime.js';
|
|
@@ -19,7 +19,7 @@ export default [
|
|
|
19
19
|
]),
|
|
20
20
|
{
|
|
21
21
|
plugins: {
|
|
22
|
-
'react-hooks':
|
|
22
|
+
'react-hooks': reactHooks,
|
|
23
23
|
},
|
|
24
24
|
rules: {
|
|
25
25
|
...reactHooks.configs.recommended.rules,
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@eslint/compat": "^1.1.1",
|
|
10
|
-
"@eslint/js": "^9.
|
|
11
|
-
"eslint": "^9.
|
|
12
|
-
"eslint-plugin-react": "^7.35.
|
|
13
|
-
"eslint-plugin-react-hooks": "^
|
|
10
|
+
"@eslint/js": "^9.10.0",
|
|
11
|
+
"eslint": "^9.10.0",
|
|
12
|
+
"eslint-plugin-react": "^7.35.2",
|
|
13
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
14
14
|
"globals": "^15.9.0"
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { fixupConfigRules
|
|
1
|
+
import { fixupConfigRules } from '@eslint/compat';
|
|
2
2
|
import js from '@eslint/js';
|
|
3
3
|
import reactHooks from 'eslint-plugin-react-hooks';
|
|
4
4
|
import reactJsx from 'eslint-plugin-react/configs/jsx-runtime.js';
|
|
@@ -21,7 +21,7 @@ export default [
|
|
|
21
21
|
]),
|
|
22
22
|
{
|
|
23
23
|
plugins: {
|
|
24
|
-
'react-hooks':
|
|
24
|
+
'react-hooks': reactHooks,
|
|
25
25
|
},
|
|
26
26
|
rules: {
|
|
27
27
|
...reactHooks.configs.recommended.rules,
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@eslint/compat": "^1.1.1",
|
|
10
|
-
"@eslint/js": "^9.
|
|
11
|
-
"eslint": "^9.
|
|
12
|
-
"eslint-plugin-react": "^7.35.
|
|
13
|
-
"eslint-plugin-react-hooks": "^
|
|
10
|
+
"@eslint/js": "^9.10.0",
|
|
11
|
+
"eslint": "^9.10.0",
|
|
12
|
+
"eslint-plugin-react": "^7.35.2",
|
|
13
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
14
14
|
"globals": "^15.9.0",
|
|
15
|
-
"typescript-eslint": "^8.
|
|
15
|
+
"typescript-eslint": "^8.5.0"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/js": "^9.
|
|
10
|
-
"eslint": "^9.
|
|
9
|
+
"@eslint/js": "^9.10.0",
|
|
10
|
+
"eslint": "^9.10.0",
|
|
11
11
|
"eslint-plugin-svelte": "^2.43.0",
|
|
12
12
|
"globals": "^15.9.0",
|
|
13
|
-
"typescript-eslint": "^8.
|
|
13
|
+
"typescript-eslint": "^8.5.0"
|
|
14
14
|
},
|
|
15
15
|
"type": "module"
|
|
16
16
|
}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/js": "^9.
|
|
10
|
-
"eslint": "^9.
|
|
11
|
-
"eslint-plugin-vue": "^9.
|
|
9
|
+
"@eslint/js": "^9.10.0",
|
|
10
|
+
"eslint": "^9.10.0",
|
|
11
|
+
"eslint-plugin-vue": "^9.28.0",
|
|
12
12
|
"globals": "^15.9.0",
|
|
13
|
-
"typescript-eslint": "^8.
|
|
13
|
+
"typescript-eslint": "^8.5.0"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules/@biomejs/biome/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules/@biomejs/biome/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules/@biomejs/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules/@biomejs/biome/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules/@biomejs/biome/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules/@biomejs/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/@biomejs+biome@1.8.3/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../@biomejs/biome/bin/biome" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../@biomejs/biome/bin/biome" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/acorn@8.12.1/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/acorn@8.12.1/node_modules/acorn/bin/acorn" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules/eslint/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/eslint@9.9.1_jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/jiti@1.21.6/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/jiti@1.21.6/node_modules/jiti/bin/jiti.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsc" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/typescript@5.5.2/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../../../../../../node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/bin/tsserver" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
-
esac
|
|
7
|
-
|
|
8
|
-
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/prettier@3.3.3/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/bin/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/prettier@3.3.3/node_modules:/Users/chenjiahan/Project/rsbuild/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../prettier/bin/prettier.cjs" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../prettier/bin/prettier.cjs" "$@"
|
|
17
|
-
fi
|