@superblocksteam/cli 2.0.0-next.20 → 2.0.0-next.23
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/README.md +1 -1
- package/dist/index.js +4 -21
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ $ npm install -g @superblocksteam/cli
|
|
|
14
14
|
$ superblocks COMMAND
|
|
15
15
|
running command...
|
|
16
16
|
$ superblocks (--version)
|
|
17
|
-
@superblocksteam/cli/2.0.0-next.
|
|
17
|
+
@superblocksteam/cli/2.0.0-next.23 linux-x64 node-v20.19.0
|
|
18
18
|
$ superblocks --help [COMMAND]
|
|
19
19
|
USAGE
|
|
20
20
|
$ superblocks COMMAND
|
package/dist/index.js
CHANGED
|
@@ -263726,7 +263726,7 @@ init_esm();
|
|
|
263726
263726
|
// ../sdk/package.json
|
|
263727
263727
|
var package_default = {
|
|
263728
263728
|
name: "@superblocksteam/sdk",
|
|
263729
|
-
version: "2.0.0-next.
|
|
263729
|
+
version: "2.0.0-next.23",
|
|
263730
263730
|
type: "module",
|
|
263731
263731
|
description: "Superblocks JS SDK",
|
|
263732
263732
|
homepage: "https://www.superblocks.com",
|
|
@@ -263763,8 +263763,8 @@ var package_default = {
|
|
|
263763
263763
|
"@rollup/wasm-node": "^4.35.0",
|
|
263764
263764
|
"@superblocksteam/bucketeer-sdk": "0.4.1",
|
|
263765
263765
|
"@superblocksteam/shared": "0.9132.0",
|
|
263766
|
-
"@superblocksteam/util": "2.0.0-next.
|
|
263767
|
-
"@superblocksteam/vite-plugin-file-sync": "2.0.0-next.
|
|
263766
|
+
"@superblocksteam/util": "2.0.0-next.23",
|
|
263767
|
+
"@superblocksteam/vite-plugin-file-sync": "2.0.0-next.23",
|
|
263768
263768
|
"@vitejs/plugin-react": "^4.3.4",
|
|
263769
263769
|
axios: "^1.4.0",
|
|
263770
263770
|
chokidar: "^4.0.3",
|
|
@@ -305007,23 +305007,6 @@ var fileSyncVitePlugin = (pluginParams, options8) => {
|
|
|
305007
305007
|
res.setHeader("Content-Type", "application/json");
|
|
305008
305008
|
return res.end(JSON.stringify(appScope));
|
|
305009
305009
|
});
|
|
305010
|
-
server.middlewares.use("/sb-ping", async (req, res, _next) => {
|
|
305011
|
-
if (req.method !== "GET" && req.method !== "OPTIONS") {
|
|
305012
|
-
res.statusCode = 405;
|
|
305013
|
-
res.end("Method not allowed");
|
|
305014
|
-
return res.end();
|
|
305015
|
-
}
|
|
305016
|
-
res.setHeader("Access-Control-Allow-Origin", "*");
|
|
305017
|
-
res.setHeader("Access-Control-Allow-Methods", "GET, OPTIONS");
|
|
305018
|
-
res.setHeader("Access-Control-Allow-Headers", "Content-Type");
|
|
305019
|
-
if (req.method === "OPTIONS") {
|
|
305020
|
-
res.statusCode = 204;
|
|
305021
|
-
res.end();
|
|
305022
|
-
return;
|
|
305023
|
-
}
|
|
305024
|
-
res.setHeader("Content-Type", "application/json");
|
|
305025
|
-
return res.end(JSON.stringify({ status: "ok", timestamp: Date.now() }));
|
|
305026
|
-
});
|
|
305027
305010
|
const socketManager = new SocketManager();
|
|
305028
305011
|
socketManager.startSocketServer({
|
|
305029
305012
|
server: httpServer2,
|
|
@@ -308661,7 +308644,7 @@ async function startVite({ app, httpServer: httpServer2, root: root2, mode, port
|
|
|
308661
308644
|
};
|
|
308662
308645
|
const isCustomBuildEnabled2 = await isCustomComponentsEnabled();
|
|
308663
308646
|
const customFolder = path21.join(root2, "custom");
|
|
308664
|
-
const cdnUrl = "https://assets-cdn.superblocks.com/library/2.0.0-next.
|
|
308647
|
+
const cdnUrl = "https://assets-cdn.superblocks.com/library/2.0.0-next.23";
|
|
308665
308648
|
const env3 = loadEnv(mode, root2, "");
|
|
308666
308649
|
const hmrPort = await getFreePort();
|
|
308667
308650
|
const hmrOptions = {
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/cli",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official Superblocks CLI",
|
|
6
6
|
"homepage": "https://www.superblocks.com",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@eslint/js": "^9.16.0",
|
|
44
44
|
"@oclif/test": "^4.1.11",
|
|
45
|
-
"@superblocksteam/sdk": "2.0.0-next.
|
|
45
|
+
"@superblocksteam/sdk": "2.0.0-next.23",
|
|
46
46
|
"@superblocksteam/shared": "0.9132.0",
|
|
47
|
-
"@superblocksteam/util": "2.0.0-next.
|
|
47
|
+
"@superblocksteam/util": "2.0.0-next.23",
|
|
48
48
|
"@types/babel__core": "^7.20.0",
|
|
49
49
|
"@types/chai": "^4",
|
|
50
50
|
"@types/fs-extra": "^11.0.1",
|