make-sugarcube 0.0.13 → 0.0.14-alpha.1
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/LICENSE.md +31 -0
- package/README.md +3 -5
- package/index.js +1 -7
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# make-sugarcube
|
|
2
|
+
|
|
3
|
+
## 0.0.14-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [3b186b3]
|
|
8
|
+
- @sugarcube-org/cli@0.0.0-alpha.18
|
|
9
|
+
|
|
10
|
+
## 0.0.14-alpha.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 8b34bfb: Add private alpha license to all packages
|
|
15
|
+
- Updated dependencies [8b34bfb]
|
|
16
|
+
- @sugarcube-org/cli@0.0.0-alpha.17
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Sugarcube Private Alpha License
|
|
2
|
+
|
|
3
|
+
Copyright © 2025 Mark Tomlinson. All rights reserved.
|
|
4
|
+
|
|
5
|
+
**Version 1.0 – December 2025**
|
|
6
|
+
|
|
7
|
+
This software is provided under a temporary, non-exclusive, non-transferable
|
|
8
|
+
license for private evaluation and internal use as part of the Sugarcube
|
|
9
|
+
Private Alpha Program.
|
|
10
|
+
|
|
11
|
+
## Permitted
|
|
12
|
+
|
|
13
|
+
- Use in internal and client projects for the purpose of evaluating Sugarcube
|
|
14
|
+
- Reporting bugs, performance issues, and usability feedback
|
|
15
|
+
|
|
16
|
+
## Not Permitted
|
|
17
|
+
|
|
18
|
+
- Redistribution of the software or any derivative works
|
|
19
|
+
- Public hosting of the source code
|
|
20
|
+
- Sublicensing, resale, or commercial distribution of Sugarcube itself
|
|
21
|
+
- Reverse engineering for the purpose of creating a competing product
|
|
22
|
+
|
|
23
|
+
## Disclaimer
|
|
24
|
+
|
|
25
|
+
This software is provided "as is", without warranty of any kind, express or
|
|
26
|
+
implied. The author assumes no liability for damages arising from its use.
|
|
27
|
+
|
|
28
|
+
## Future Licensing
|
|
29
|
+
|
|
30
|
+
This license will be replaced by an open-source license at public beta or
|
|
31
|
+
general availability.
|
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# make-sugarcube
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> ⚠️ **Private Alpha** — This package is under active development and not yet ready for public use.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## License
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Follow our progress on [GitHub](https://github.com/sugarcube-org)
|
|
7
|
+
See [LICENSE.md](./LICENSE.md) for terms.
|
package/index.js
CHANGED
|
@@ -2,16 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
console.log(`
|
|
4
4
|
╔════════════════════════════════════════════════════════════════════════════╗
|
|
5
|
-
║ WELCOME TO SUGARCUBE (THE TOOLKIT FOR SERIOUSLY SWEET
|
|
5
|
+
║ WELCOME TO SUGARCUBE (THE TOOLKIT FOR SERIOUSLY SWEET FRONTENDS) ║
|
|
6
6
|
║ ║
|
|
7
7
|
║ Package coming soon! ║
|
|
8
8
|
║ ║
|
|
9
9
|
║ For updates, follow: @marktomlinson.bsky.social ║
|
|
10
10
|
╚════════════════════════════════════════════════════════════════════════════╝
|
|
11
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,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "make-sugarcube",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14-alpha.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Public CLI entrypoint for sugarcube",
|
|
6
6
|
"bin": {
|
|
7
7
|
"make-sugarcube": "./index.js"
|
|
8
8
|
},
|
|
9
9
|
"author": "Mark Tomlinson",
|
|
10
|
-
"license": "
|
|
10
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "https://github.com/sugarcube-org/sugarcube"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@sugarcube-org/cli": "
|
|
25
|
+
"@sugarcube-org/cli": "0.0.0-alpha.18"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
28
|
"node": ">=18.0.0"
|