@quilted/create 0.1.67 → 0.1.68
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 +8 -0
- package/build/cjs/_virtual/estree.cjs +5 -0
- package/build/cjs/cli.cjs +2 -2
- package/build/cjs/node_modules/.pnpm/prettier@3.0.0/node_modules/prettier/plugins/estree.cjs +70 -0
- package/build/cjs/packages/cli-kit/source/prompt.cjs +2 -2
- package/build/cjs/packages/events/source/{abort.cjs → abort/AbortError.cjs} +6 -0
- package/build/cjs/shared.cjs +4 -8
- package/build/esm/_virtual/estree.mjs +3 -0
- package/build/esm/cli.mjs +1 -1
- package/build/esm/node_modules/.pnpm/prettier@3.0.0/node_modules/prettier/plugins/estree.mjs +65 -0
- package/build/esm/packages/cli-kit/source/prompt.mjs +1 -1
- package/build/esm/packages/events/source/{abort.mjs → abort/AbortError.mjs} +6 -0
- package/build/esm/shared.mjs +4 -8
- package/build/esnext/_virtual/estree.esnext +3 -0
- package/build/esnext/node_modules/.pnpm/prettier@3.0.0/node_modules/prettier/plugins/estree.esnext +65 -0
- package/build/esnext/packages/cli-kit/source/prompt.esnext +1 -1
- package/build/esnext/packages/events/source/{abort.esnext → abort/AbortError.esnext} +6 -0
- package/build/esnext/shared.esnext +4 -8
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/typescript/shared.d.ts.map +1 -1
- package/package.json +1 -1
- package/source/shared.ts +10 -7
- package/templates/app-basic/features/Start/Start.test.tsx +2 -2
- package/templates/{app-trpc/tests → app-basic/tests/render}/render.tsx +3 -34
- package/templates/app-basic/tests/render/types.ts +29 -0
- package/templates/app-basic/tests/render.ts +6 -0
- package/templates/app-graphql/features/Start/Start.test.tsx +3 -3
- package/templates/app-graphql/tests/render/render.tsx +59 -0
- package/templates/app-graphql/tests/render/types.ts +63 -0
- package/templates/app-graphql/tests/render.ts +7 -0
- package/templates/app-trpc/App.tsx +32 -2
- package/templates/{app-basic/tests → app-trpc/tests/render}/render.tsx +12 -37
- package/templates/app-trpc/tests/render/types.ts +35 -0
- package/templates/app-trpc/tests/render.ts +6 -0
- package/templates/app-graphql/tests/render.tsx +0 -126
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @quilted/create
|
|
2
2
|
|
|
3
|
+
## 0.1.68
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#586](https://github.com/lemonmade/quilt/pull/586) [`48046de7`](https://github.com/lemonmade/quilt/commit/48046de73bec4d7bc3f8a5ac2bb21888208740ab) Thanks [@lemonmade](https://github.com/lemonmade)! - Update testing of template apps
|
|
8
|
+
|
|
9
|
+
- [`40329e93`](https://github.com/lemonmade/quilt/commit/40329e93d1a08832282e01e23697f999306dc859) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix prettier plugins
|
|
10
|
+
|
|
3
11
|
## 0.1.67
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/build/cjs/cli.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var help = require('./help.cjs');
|
|
4
|
-
var
|
|
4
|
+
var AbortError = require('./packages/events/source/abort/AbortError.cjs');
|
|
5
5
|
var index = require('./node_modules/.pnpm/arg@5.0.2/node_modules/arg/index.cjs');
|
|
6
6
|
var stripIndent = require('./node_modules/.pnpm/common-tags@1.8.2/node_modules/common-tags/es/stripIndent/stripIndent.cjs');
|
|
7
7
|
require('./node_modules/.pnpm/common-tags@1.8.2/node_modules/common-tags/es/TemplateTag/TemplateTag.cjs');
|
|
@@ -25,7 +25,7 @@ var index$1 = require('./node_modules/.pnpm/colorette@2.0.19/node_modules/colore
|
|
|
25
25
|
|
|
26
26
|
const VALID_PROJECT_KINDS = new Set(['app', 'package', 'module']);
|
|
27
27
|
run().catch(error => {
|
|
28
|
-
if (
|
|
28
|
+
if (AbortError.AbortError.test(error)) return;
|
|
29
29
|
console.error(error);
|
|
30
30
|
process.exitCode = 1;
|
|
31
31
|
});
|