@quilted/create 0.1.86 → 0.1.88
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 +16 -0
- package/build/cjs/module.cjs +47 -79
- package/build/cjs/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/prompts.cjs +1 -1
- package/build/cjs/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/index.cjs +1 -1
- package/build/cjs/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.cjs +1 -1
- package/build/cjs/package.cjs +3 -3
- package/build/cjs/shared.cjs +2 -1
- package/build/esm/module.mjs +47 -79
- 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/index.mjs +1 -1
- package/build/esm/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.mjs +1 -1
- package/build/esm/package.mjs +3 -3
- package/build/esnext/module.esnext +47 -79
- package/build/esnext/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/prompts.esnext +1 -1
- package/build/esnext/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/index.esnext +1 -1
- package/build/esnext/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.esnext +1 -1
- package/build/esnext/package.esnext +3 -3
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/typescript/module.d.ts.map +1 -1
- package/build/typescript/shared.d.ts +1 -1
- package/build/typescript/shared.d.ts.map +1 -1
- package/package.json +1 -1
- package/source/module.ts +83 -128
- package/source/package.ts +4 -4
- package/source/shared.ts +0 -2
- package/templates/module/module.ts +3 -1
- package/templates/module/package.json +6 -9
- package/templates/module/rollup.config.js +3 -0
- package/templates/module/tsconfig.json +1 -1
- package/templates/package/package.json +7 -11
- package/templates/package/tsconfig.json +1 -1
- package/templates/module/quilt.project.ts +0 -5
- package/templates/package/quilt.project.ts +0 -5
- package/templates/package/source/tests/index.test.ts +0 -8
- package/templates/package-simple/README.md +0 -1
- package/templates/package-simple/package.json +0 -51
- package/templates/package-simple/source/index.ts +0 -3
- package/templates/package-simple/tsconfig.json +0 -10
- /package/templates/{package-simple → package}/rollup.config.js +0 -0
- /package/templates/{package-simple → package}/source/index.test.ts +0 -0
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"version": "0.0.0",
|
|
11
11
|
"engines": {
|
|
12
|
-
"node": ">=
|
|
12
|
+
"node": ">=18.0.0"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
@@ -20,12 +20,14 @@
|
|
|
20
20
|
"types": "./build/typescript/index.d.ts",
|
|
21
21
|
"quilt:source": "./source/index.ts",
|
|
22
22
|
"quilt:esnext": "./build/esnext/index.esnext",
|
|
23
|
-
"import": "./build/esm/index.mjs"
|
|
24
|
-
"require": "./build/cjs/index.cjs"
|
|
23
|
+
"import": "./build/esm/index.mjs"
|
|
25
24
|
}
|
|
26
25
|
},
|
|
27
26
|
"types": "./build/typescript/index.d.ts",
|
|
28
27
|
"sideEffects": false,
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "rollup --config rollup.config.js"
|
|
30
|
+
},
|
|
29
31
|
"dependencies": {
|
|
30
32
|
"@types/react": "^17.0.0 || ^18.0.0"
|
|
31
33
|
},
|
|
@@ -38,16 +40,10 @@
|
|
|
38
40
|
}
|
|
39
41
|
},
|
|
40
42
|
"devDependencies": {
|
|
41
|
-
"@quilted/testing": "^0.1.0",
|
|
42
43
|
"react": "npm:@quilted/react@^18.2.0"
|
|
43
44
|
},
|
|
44
|
-
"eslintConfig": {
|
|
45
|
-
"extends": [
|
|
46
|
-
"@quilted/eslint-config/project",
|
|
47
|
-
"@quilted/eslint-config/react"
|
|
48
|
-
]
|
|
49
|
-
},
|
|
50
45
|
"browserslist": [
|
|
51
|
-
"
|
|
46
|
+
"defaults and fully supports es6-module",
|
|
47
|
+
"maintained node versions"
|
|
52
48
|
]
|
|
53
49
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# `{{name}}`
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "template-package-simple",
|
|
3
|
-
"description": "<YOUR DESCRIPTION HERE>",
|
|
4
|
-
"type": "module",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"private": true,
|
|
7
|
-
"publishConfig": {
|
|
8
|
-
"access": "public"
|
|
9
|
-
},
|
|
10
|
-
"version": "0.0.0",
|
|
11
|
-
"engines": {
|
|
12
|
-
"node": ">=18.0.0"
|
|
13
|
-
},
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "https://github.com/<USER>/<REPOSITORY>"
|
|
17
|
-
},
|
|
18
|
-
"exports": {
|
|
19
|
-
".": {
|
|
20
|
-
"types": "./build/typescript/index.d.ts",
|
|
21
|
-
"quilt:source": "./source/index.ts",
|
|
22
|
-
"quilt:esnext": "./build/esnext/index.esnext",
|
|
23
|
-
"import": "./build/esm/index.mjs",
|
|
24
|
-
"require": "./build/cjs/index.cjs"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"types": "./build/typescript/index.d.ts",
|
|
28
|
-
"sideEffects": false,
|
|
29
|
-
"scripts": {
|
|
30
|
-
"build": "rollup --config rollup.config.js"
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@types/react": "^17.0.0 || ^18.0.0"
|
|
34
|
-
},
|
|
35
|
-
"peerDependencies": {
|
|
36
|
-
"react": "^17.0.0 || ^18.0.0"
|
|
37
|
-
},
|
|
38
|
-
"peerDependenciesMeta": {
|
|
39
|
-
"react": {
|
|
40
|
-
"optional": true
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@quilted/testing": "^0.1.0",
|
|
45
|
-
"react": "npm:@quilted/react@^18.2.0"
|
|
46
|
-
},
|
|
47
|
-
"browserslist": [
|
|
48
|
-
"defaults and fully supports es6-module",
|
|
49
|
-
"maintained node versions"
|
|
50
|
-
]
|
|
51
|
-
}
|
|
File without changes
|
|
File without changes
|