create-rspeedy-canary 0.9.10 → 0.9.11-canary-20250626-0ff9eb54
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
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { createRequire } from "node:module";
|
|
3
|
-
import
|
|
3
|
+
import node_path from "node:path";
|
|
4
4
|
import { fileURLToPath } from "node:url";
|
|
5
5
|
import { checkCancel, create, multiselect, select as external_create_rstack_select } from "create-rstack";
|
|
6
|
-
const src_dirname =
|
|
6
|
+
const src_dirname = node_path.dirname(fileURLToPath(import.meta.url));
|
|
7
7
|
const src_require = createRequire(import.meta.url);
|
|
8
8
|
const { devDependencies } = src_require('../package.json');
|
|
9
9
|
const composeTemplateName = ({ template, tools, lang })=>{
|
|
@@ -70,7 +70,7 @@ async function getTemplateName({ template }) {
|
|
|
70
70
|
});
|
|
71
71
|
}
|
|
72
72
|
create({
|
|
73
|
-
root:
|
|
73
|
+
root: node_path.resolve(src_dirname, '..'),
|
|
74
74
|
name: 'rspeedy',
|
|
75
75
|
templates: TEMPLATES.map(({ template, tools, lang })=>composeTemplateName({
|
|
76
76
|
template,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rspeedy-canary",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.11-canary-20250626-0ff9eb54",
|
|
4
4
|
"description": "Create Rspeedy-powered ReactLynx apps with one command",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@rsbuild/plugin-type-check": "1.2.3",
|
|
38
38
|
"@lynx-js/qrcode-rsbuild-plugin": "npm:@lynx-js/qrcode-rsbuild-plugin-canary@^0.3.6",
|
|
39
|
-
"@lynx-js/react": "npm:@lynx-js/react-canary@^0.110.
|
|
40
|
-
"@lynx-js/
|
|
41
|
-
"@lynx-js/
|
|
39
|
+
"@lynx-js/react": "npm:@lynx-js/react-canary@^0.110.1-canary-20250626-0ff9eb54",
|
|
40
|
+
"@lynx-js/rspeedy": "npm:@lynx-js/rspeedy-canary@^0.9.11-canary-20250626-0ff9eb54",
|
|
41
|
+
"@lynx-js/react-rsbuild-plugin": "npm:@lynx-js/react-rsbuild-plugin-canary@^0.10.5-canary-20250626-0ff9eb54"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=18"
|