@quilted/create 0.2.7 → 0.2.9
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 +12 -0
- package/build/esm/node_modules/.pnpm/arg@5.0.2/node_modules/arg/index.mjs +1 -1
- 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.2.12/node_modules/fast-glob/out/index.mjs +1 -1
- package/build/esm/node_modules/.pnpm/ignore@5.2.4/node_modules/ignore/index.mjs +1 -1
- package/build/esm/node_modules/.pnpm/minimatch@5.1.0/node_modules/minimatch/minimatch.mjs +4 -4
- package/build/esm/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/index.mjs +1 -1
- package/build/esm/shared/package-manager.mjs +1 -1
- package/package.json +1 -1
- package/templates/app-basic/package.json +1 -1
- package/templates/app-empty/package.json +1 -1
- package/templates/app-graphql/package.json +1 -1
- package/templates/app-trpc/package.json +1 -1
- package/templates/workspace/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @quilted/create
|
|
2
2
|
|
|
3
|
+
## 0.2.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`17cf1aae`](https://github.com/lemonmade/quilt/commit/17cf1aae321f16ca9f8b2cf6c7a5524103ead825) Thanks [@lemonmade](https://github.com/lemonmade)! - Simplify template app module browserslist configuration
|
|
8
|
+
|
|
9
|
+
## 0.2.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`e81fc8cb`](https://github.com/lemonmade/quilt/commit/e81fc8cb3fa3b429a91db83e30fcb56bdc7f776a) Thanks [@lemonmade](https://github.com/lemonmade)! - Upgrade Vite
|
|
14
|
+
|
|
3
15
|
## 0.2.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -121,6 +121,6 @@ arg.COUNT = arg.flag((v, name, existingCount) => (existingCount || 0) + 1);
|
|
|
121
121
|
// Expose error class
|
|
122
122
|
arg.ArgError = ArgError;
|
|
123
123
|
var arg_1 = arg;
|
|
124
|
-
|
|
124
|
+
const parseArguments = /*@__PURE__*/getDefaultExportFromCjs(arg_1);
|
|
125
125
|
|
|
126
126
|
export { parseArguments as default };
|
|
@@ -63,6 +63,6 @@ dirGlob$1.exports.sync = (input, options) => {
|
|
|
63
63
|
};
|
|
64
64
|
|
|
65
65
|
var dirGlobExports = dirGlob$1.exports;
|
|
66
|
-
|
|
66
|
+
const dirGlob = /*@__PURE__*/getDefaultExportFromCjs(dirGlobExports);
|
|
67
67
|
|
|
68
68
|
export { dirGlob as default };
|
|
@@ -457,6 +457,6 @@ typeof process !== 'undefined' && (process.env && process.env.IGNORE_TEST_WIN32
|
|
|
457
457
|
const REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i;
|
|
458
458
|
checkPath.isNotRelative = path => REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path) || isNotRelative(path);
|
|
459
459
|
}
|
|
460
|
-
|
|
460
|
+
const gitIgnore = /*@__PURE__*/getDefaultExportFromCjs(ignore);
|
|
461
461
|
|
|
462
462
|
export { gitIgnore as default };
|
|
@@ -823,11 +823,11 @@ class Minimatch {
|
|
|
823
823
|
}
|
|
824
824
|
}
|
|
825
825
|
minimatch.Minimatch = Minimatch;
|
|
826
|
-
|
|
826
|
+
const minimatch$1 = /*@__PURE__*/getDefaultExportFromCjs(minimatch_1);
|
|
827
827
|
|
|
828
|
-
|
|
828
|
+
const minimatch$2 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
829
829
|
__proto__: null,
|
|
830
|
-
|
|
831
|
-
});
|
|
830
|
+
default: minimatch$1
|
|
831
|
+
}, Symbol.toStringTag, { value: 'Module' }));
|
|
832
832
|
|
|
833
833
|
export { minimatch$1 as default, minimatch$2 as minimatch };
|
|
@@ -13,6 +13,6 @@ function isNodeLT(tar) {
|
|
|
13
13
|
return false;
|
|
14
14
|
}
|
|
15
15
|
var prompts = isNodeLT('8.6.0') ? requireDist() : requireLib();
|
|
16
|
-
|
|
16
|
+
const prompts$1 = /*@__PURE__*/getDefaultExportFromCjs(prompts);
|
|
17
17
|
|
|
18
18
|
export { prompts$1 as default };
|
|
@@ -31,7 +31,7 @@ async function addToWorkspaces(relative, workspaces) {
|
|
|
31
31
|
let hasMatch = false;
|
|
32
32
|
const {
|
|
33
33
|
default: minimatch
|
|
34
|
-
} = await import('../node_modules/.pnpm/minimatch@5.1.0/node_modules/minimatch/minimatch.mjs').then(
|
|
34
|
+
} = await import('../node_modules/.pnpm/minimatch@5.1.0/node_modules/minimatch/minimatch.mjs').then(n => n.minimatch);
|
|
35
35
|
for (const pattern of workspaces) {
|
|
36
36
|
let normalizedPattern = pattern;
|
|
37
37
|
if (pattern.startsWith('./')) {
|
package/package.json
CHANGED
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"@quilted/rollup": "^0.2.0",
|
|
17
17
|
"@quilted/vite": "^0.1.0",
|
|
18
18
|
"@quilted/typescript": "^0.2.0",
|
|
19
|
-
"rollup": "^4.
|
|
19
|
+
"rollup": "^4.5.0",
|
|
20
20
|
"prettier": "^3.0.0",
|
|
21
21
|
"tsx": "^3.14.0",
|
|
22
22
|
"typescript": "^5.2.0",
|
|
23
|
-
"vite": "^
|
|
23
|
+
"vite": "^5.0.0",
|
|
24
24
|
"vitest": "^0.34.0"
|
|
25
25
|
},
|
|
26
26
|
"prettier": {
|