@pylonsync/create-pylon 0.3.292 → 0.3.293
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/package.json +1 -1
- package/templates/barebones/package.json +2 -1
- package/templates/barebones/tsconfig.json +19 -4
- package/templates/chat/package.json +2 -1
- package/templates/chat/tsconfig.json +19 -4
- package/templates/consumer/package.json +2 -1
- package/templates/consumer/tsconfig.json +19 -4
- package/templates/todo/package.json +2 -1
- package/templates/todo/tsconfig.json +19 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pylonsync/create-pylon",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.293",
|
|
4
4
|
"description": "Scaffold a new Pylon app — realtime backend + web/mobile/expo frontends in one command. Run via `npm create @pylonsync/pylon@latest`.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -26,10 +26,11 @@
|
|
|
26
26
|
"@radix-ui/react-slot": "^1.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
30
29
|
"@happy-dom/global-registrator": "^20.10.0",
|
|
30
|
+
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
31
31
|
"@testing-library/dom": "^10.4.0",
|
|
32
32
|
"@testing-library/react": "^16.3.0",
|
|
33
|
+
"@types/node": "^22.0.0",
|
|
33
34
|
"@types/react": "^19.0.0",
|
|
34
35
|
"@types/react-dom": "^19.0.0",
|
|
35
36
|
"typescript": "^5.6.0"
|
|
@@ -7,12 +7,27 @@
|
|
|
7
7
|
"esModuleInterop": true,
|
|
8
8
|
"strict": true,
|
|
9
9
|
"skipLibCheck": true,
|
|
10
|
-
"lib": [
|
|
11
|
-
|
|
10
|
+
"lib": [
|
|
11
|
+
"ES2022",
|
|
12
|
+
"DOM"
|
|
13
|
+
],
|
|
14
|
+
"types": [
|
|
15
|
+
"react",
|
|
16
|
+
"react-dom",
|
|
17
|
+
"node"
|
|
18
|
+
],
|
|
12
19
|
"baseUrl": ".",
|
|
13
20
|
"paths": {
|
|
14
|
-
"@/*": [
|
|
21
|
+
"@/*": [
|
|
22
|
+
"./*"
|
|
23
|
+
]
|
|
15
24
|
}
|
|
16
25
|
},
|
|
17
|
-
"include": [
|
|
26
|
+
"include": [
|
|
27
|
+
"app.ts",
|
|
28
|
+
"app/**/*",
|
|
29
|
+
"components/**/*",
|
|
30
|
+
"lib/**/*",
|
|
31
|
+
"functions/**/*"
|
|
32
|
+
]
|
|
18
33
|
}
|
|
@@ -26,10 +26,11 @@
|
|
|
26
26
|
"@radix-ui/react-slot": "^1.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
30
29
|
"@happy-dom/global-registrator": "^20.10.0",
|
|
30
|
+
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
31
31
|
"@testing-library/dom": "^10.4.0",
|
|
32
32
|
"@testing-library/react": "^16.3.0",
|
|
33
|
+
"@types/node": "^22.0.0",
|
|
33
34
|
"@types/react": "^19.0.0",
|
|
34
35
|
"@types/react-dom": "^19.0.0",
|
|
35
36
|
"typescript": "^5.6.0"
|
|
@@ -7,12 +7,27 @@
|
|
|
7
7
|
"esModuleInterop": true,
|
|
8
8
|
"strict": true,
|
|
9
9
|
"skipLibCheck": true,
|
|
10
|
-
"lib": [
|
|
11
|
-
|
|
10
|
+
"lib": [
|
|
11
|
+
"ES2022",
|
|
12
|
+
"DOM"
|
|
13
|
+
],
|
|
14
|
+
"types": [
|
|
15
|
+
"react",
|
|
16
|
+
"react-dom",
|
|
17
|
+
"node"
|
|
18
|
+
],
|
|
12
19
|
"baseUrl": ".",
|
|
13
20
|
"paths": {
|
|
14
|
-
"@/*": [
|
|
21
|
+
"@/*": [
|
|
22
|
+
"./*"
|
|
23
|
+
]
|
|
15
24
|
}
|
|
16
25
|
},
|
|
17
|
-
"include": [
|
|
26
|
+
"include": [
|
|
27
|
+
"app.ts",
|
|
28
|
+
"app/**/*",
|
|
29
|
+
"components/**/*",
|
|
30
|
+
"lib/**/*",
|
|
31
|
+
"functions/**/*"
|
|
32
|
+
]
|
|
18
33
|
}
|
|
@@ -26,10 +26,11 @@
|
|
|
26
26
|
"@radix-ui/react-slot": "^1.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
30
29
|
"@happy-dom/global-registrator": "^20.10.0",
|
|
30
|
+
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
31
31
|
"@testing-library/dom": "^10.4.0",
|
|
32
32
|
"@testing-library/react": "^16.3.0",
|
|
33
|
+
"@types/node": "^22.0.0",
|
|
33
34
|
"@types/react": "^19.0.0",
|
|
34
35
|
"@types/react-dom": "^19.0.0",
|
|
35
36
|
"typescript": "^5.6.0"
|
|
@@ -7,12 +7,27 @@
|
|
|
7
7
|
"esModuleInterop": true,
|
|
8
8
|
"strict": true,
|
|
9
9
|
"skipLibCheck": true,
|
|
10
|
-
"lib": [
|
|
11
|
-
|
|
10
|
+
"lib": [
|
|
11
|
+
"ES2022",
|
|
12
|
+
"DOM"
|
|
13
|
+
],
|
|
14
|
+
"types": [
|
|
15
|
+
"react",
|
|
16
|
+
"react-dom",
|
|
17
|
+
"node"
|
|
18
|
+
],
|
|
12
19
|
"baseUrl": ".",
|
|
13
20
|
"paths": {
|
|
14
|
-
"@/*": [
|
|
21
|
+
"@/*": [
|
|
22
|
+
"./*"
|
|
23
|
+
]
|
|
15
24
|
}
|
|
16
25
|
},
|
|
17
|
-
"include": [
|
|
26
|
+
"include": [
|
|
27
|
+
"app.ts",
|
|
28
|
+
"app/**/*",
|
|
29
|
+
"components/**/*",
|
|
30
|
+
"lib/**/*",
|
|
31
|
+
"functions/**/*"
|
|
32
|
+
]
|
|
18
33
|
}
|
|
@@ -26,10 +26,11 @@
|
|
|
26
26
|
"@radix-ui/react-slot": "^1.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
30
29
|
"@happy-dom/global-registrator": "^20.10.0",
|
|
30
|
+
"@pylonsync/cli": "^__PYLON_VERSION__",
|
|
31
31
|
"@testing-library/dom": "^10.4.0",
|
|
32
32
|
"@testing-library/react": "^16.3.0",
|
|
33
|
+
"@types/node": "^22.0.0",
|
|
33
34
|
"@types/react": "^19.0.0",
|
|
34
35
|
"@types/react-dom": "^19.0.0",
|
|
35
36
|
"typescript": "^5.6.0"
|
|
@@ -7,12 +7,27 @@
|
|
|
7
7
|
"esModuleInterop": true,
|
|
8
8
|
"strict": true,
|
|
9
9
|
"skipLibCheck": true,
|
|
10
|
-
"lib": [
|
|
11
|
-
|
|
10
|
+
"lib": [
|
|
11
|
+
"ES2022",
|
|
12
|
+
"DOM"
|
|
13
|
+
],
|
|
14
|
+
"types": [
|
|
15
|
+
"react",
|
|
16
|
+
"react-dom",
|
|
17
|
+
"node"
|
|
18
|
+
],
|
|
12
19
|
"baseUrl": ".",
|
|
13
20
|
"paths": {
|
|
14
|
-
"@/*": [
|
|
21
|
+
"@/*": [
|
|
22
|
+
"./*"
|
|
23
|
+
]
|
|
15
24
|
}
|
|
16
25
|
},
|
|
17
|
-
"include": [
|
|
26
|
+
"include": [
|
|
27
|
+
"app.ts",
|
|
28
|
+
"app/**/*",
|
|
29
|
+
"components/**/*",
|
|
30
|
+
"lib/**/*",
|
|
31
|
+
"functions/**/*"
|
|
32
|
+
]
|
|
18
33
|
}
|