@quilted/create 0.3.4 → 0.3.6
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/CHANGELOG.md +230 -0
- package/build/esm/_virtual/index.mjs +2 -2
- package/build/esm/_virtual/index7.mjs +2 -2
- package/build/esm/_virtual/index8.mjs +2 -2
- package/build/esm/_virtual/minimatch.mjs +20 -2
- package/build/esm/app.mjs +3 -3
- package/build/esm/cli.mjs +2 -2
- package/build/esm/module.mjs +3 -3
- package/build/esm/node_modules/.pnpm/dir-glob@3.0.1/node_modules/dir-glob/index.mjs +1 -1
- package/build/esm/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/index.mjs +1 -1
- package/build/esm/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/prompts.mjs +1 -1
- package/build/esm/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.mjs +1 -1
- package/build/esm/node_modules/.pnpm/yaml@2.7.0/node_modules/yaml/browser/index.mjs +6 -1
- package/build/esm/package.mjs +3 -3
- package/build/esm/server.mjs +3 -3
- package/build/esnext/_virtual/index7.esnext +2 -2
- package/build/esnext/_virtual/index8.esnext +2 -2
- package/build/esnext/_virtual/minimatch.esnext +20 -2
- package/build/esnext/app.esnext +1 -1
- package/build/esnext/module.esnext +1 -1
- package/build/esnext/node_modules/.pnpm/@nodelib_fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.esnext +1 -1
- package/build/esnext/node_modules/.pnpm/@nodelib_fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.esnext +1 -1
- package/build/esnext/node_modules/.pnpm/dir-glob@3.0.1/node_modules/dir-glob/index.esnext +1 -1
- package/build/esnext/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/index.esnext +1 -1
- package/build/esnext/node_modules/.pnpm/yaml@2.7.0/node_modules/yaml/browser/index.esnext +6 -1
- package/build/esnext/package.esnext +1 -1
- package/build/esnext/server.esnext +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -4
- package/templates/app-basic/package.json +4 -4
- package/templates/app-empty/package.json +3 -3
- package/templates/app-graphql/package.json +6 -6
- package/templates/app-graphql/tsconfig.json +1 -1
- package/templates/app-trpc/package.json +8 -8
- package/templates/workspace/_nvmrc +1 -1
- package/templates/workspace/node_modules/.bin/prettier +22 -0
- package/templates/workspace/node_modules/.bin/rollup +22 -0
- package/templates/workspace/node_modules/.bin/tsc +22 -0
- package/templates/workspace/node_modules/.bin/tsserver +22 -0
- package/templates/workspace/node_modules/.bin/vite +22 -0
- package/templates/workspace/node_modules/.bin/vitest +22 -0
- package/templates/workspace/package.json +11 -9
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/quilt/quilt/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/quilt/quilt/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../typescript/bin/tsserver" "$@"
|
|
21
|
+
fi
|
|
22
|
+
# cmd-shim-target=/home/runner/work/quilt/quilt/packages/create/templates/workspace/node_modules/typescript/bin/tsserver
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/quilt/quilt/node_modules/.pnpm/vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0/node_modules/vite/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/quilt/quilt/node_modules/.pnpm/vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0/node_modules/vite/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../vite/bin/vite.js" "$@"
|
|
21
|
+
fi
|
|
22
|
+
# cmd-shim-target=/home/runner/work/quilt/quilt/packages/create/templates/workspace/node_modules/vite/bin/vite.js
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/quilt/quilt/node_modules/.pnpm/vitest@4.1.8_@types+node@25.9.3_jsdom@29.1.1_vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0_/node_modules/vitest/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/vitest@4.1.8_@types+node@25.9.3_jsdom@29.1.1_vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0_/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/quilt/quilt/node_modules/.pnpm/vitest@4.1.8_@types+node@25.9.3_jsdom@29.1.1_vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0_/node_modules/vitest/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/vitest@4.1.8_@types+node@25.9.3_jsdom@29.1.1_vite@8.0.16_@types+node@25.9.3_esbuild@0.25.0_yaml@2.7.0_/node_modules:/home/runner/work/quilt/quilt/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../vitest/vitest.mjs" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../vitest/vitest.mjs" "$@"
|
|
21
|
+
fi
|
|
22
|
+
# cmd-shim-target=/home/runner/work/quilt/quilt/packages/create/templates/workspace/node_modules/vitest/vitest.mjs
|
|
@@ -3,25 +3,27 @@
|
|
|
3
3
|
"type": "module",
|
|
4
4
|
"version": "0.0.0",
|
|
5
5
|
"private": true,
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=22.7.0"
|
|
8
|
+
},
|
|
6
9
|
"scripts": {
|
|
7
10
|
"build": "pnpm -r run build",
|
|
8
11
|
"format": "prettier --write --cache .",
|
|
9
12
|
"lint": "prettier --check --cache .",
|
|
10
13
|
"test": "vitest",
|
|
11
14
|
"type-check": "tsc --build --pretty",
|
|
12
|
-
"typescript:run": "
|
|
13
|
-
"typescript:watch": "
|
|
15
|
+
"typescript:run": "node --experimental-transform-types --conditions quilt:source",
|
|
16
|
+
"typescript:watch": "node --experimental-transform-types --watch --conditions quilt:source"
|
|
14
17
|
},
|
|
15
18
|
"devDependencies": {
|
|
16
|
-
"@quilted/rollup": "^0.
|
|
17
|
-
"@quilted/vite": "^0.
|
|
19
|
+
"@quilted/rollup": "^0.5.0",
|
|
20
|
+
"@quilted/vite": "^0.4.0",
|
|
18
21
|
"@quilted/typescript": "^0.4.0",
|
|
19
|
-
"rollup": "^4.
|
|
22
|
+
"rollup": "^4.61.0",
|
|
20
23
|
"prettier": "^3.3.0",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"vitest": "^3.2.0"
|
|
24
|
+
"typescript": "^6.0.0",
|
|
25
|
+
"vite": "^8.0.0",
|
|
26
|
+
"vitest": "^4.0.0"
|
|
25
27
|
},
|
|
26
28
|
"prettier": {
|
|
27
29
|
"arrowParens": "always",
|