make-sugarcube 0.0.11 → 0.0.13
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/index.js +16 -4
- package/package.json +5 -2
package/index.js
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
╔════════════════════════════════════════════════════════════════════════════╗
|
|
5
|
+
║ WELCOME TO SUGARCUBE (THE TOOLKIT FOR SERIOUSLY SWEET FRONT ENDS) ║
|
|
6
|
+
║ ║
|
|
7
|
+
║ Package coming soon! ║
|
|
8
|
+
║ ║
|
|
9
|
+
║ For updates, follow: @marktomlinson.bsky.social ║
|
|
10
|
+
╚════════════════════════════════════════════════════════════════════════════╝
|
|
11
|
+
`);
|
|
12
|
+
|
|
13
|
+
// Original functionality commented out for now
|
|
14
|
+
// import("@sugarcube-org/cli").catch((err) => {
|
|
15
|
+
// console.error("Failed to load CLI:", err);
|
|
16
|
+
// process.exit(1);
|
|
17
|
+
// });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "make-sugarcube",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Public CLI entrypoint for sugarcube",
|
|
6
6
|
"bin": {
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
],
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@sugarcube-org/cli": "^0.0.0-alpha.
|
|
25
|
+
"@sugarcube-org/cli": "^0.0.0-alpha.14"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18.0.0"
|
|
26
29
|
}
|
|
27
30
|
}
|