@monolayer/sdk 1.2.4-canary.1 → 1.2.5
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/dist/bin/cli.js +1 -1
- package/package.json +3 -4
package/dist/bin/cli.js
CHANGED
|
@@ -21535,7 +21535,7 @@ A new version of @monolayer/sdk is available. Current version: ${installedVersio
|
|
|
21535
21535
|
}
|
|
21536
21536
|
|
|
21537
21537
|
// src/bin/cli.ts
|
|
21538
|
-
var CURRENT_VERSION = "1.2.
|
|
21538
|
+
var CURRENT_VERSION = "1.2.5";
|
|
21539
21539
|
function isCommanderError(error) {
|
|
21540
21540
|
return error instanceof CommanderError;
|
|
21541
21541
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monolayer/sdk",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Build and deploy full-stack applications with zero infrastructure overhead.",
|
|
5
5
|
"author": "Marcos Essindi <marcessindi@me.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,11 +13,10 @@
|
|
|
13
13
|
},
|
|
14
14
|
"type": "module",
|
|
15
15
|
"bin": {
|
|
16
|
-
"monolayer": "dist/bin/cli.js"
|
|
16
|
+
"monolayer": "dist/bin/cli.js",
|
|
17
|
+
"broadcast-server": "dist/bin/broadcast-server.mjs"
|
|
17
18
|
},
|
|
18
19
|
"files": [
|
|
19
|
-
"dist/bin/*.js",
|
|
20
|
-
"dist/bin/*.mjs",
|
|
21
20
|
"dist/**/*.js",
|
|
22
21
|
"dist/**/*.d.ts",
|
|
23
22
|
"dist/esm/package.json",
|