@openscout/scout 0.2.22 → 0.2.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/dist/main.mjs +1 -1
- package/dist/scout-web-server.mjs +1 -1
- package/package.json +3 -2
package/dist/main.mjs
CHANGED
|
@@ -37923,7 +37923,7 @@ function renderScoutHelp(version2 = "0.2.18") {
|
|
|
37923
37923
|
init_options();
|
|
37924
37924
|
|
|
37925
37925
|
// ../../apps/desktop/src/shared/product.ts
|
|
37926
|
-
var SCOUT_APP_VERSION = "0.2.
|
|
37926
|
+
var SCOUT_APP_VERSION = "0.2.23";
|
|
37927
37927
|
|
|
37928
37928
|
// ../../apps/desktop/src/cli/main.ts
|
|
37929
37929
|
async function main2() {
|
|
@@ -8024,7 +8024,7 @@ init_setup();
|
|
|
8024
8024
|
|
|
8025
8025
|
// apps/desktop/src/shared/product.ts
|
|
8026
8026
|
var SCOUT_PRODUCT_NAME = "Scout";
|
|
8027
|
-
var SCOUT_APP_VERSION = "0.2.
|
|
8027
|
+
var SCOUT_APP_VERSION = "0.2.23";
|
|
8028
8028
|
|
|
8029
8029
|
// apps/desktop/src/shared/surface-capabilities.ts
|
|
8030
8030
|
function resolveScoutSurfaceCapabilities(surface) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openscout/scout",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.23",
|
|
4
4
|
"description": "Published Scout package that installs the `scout` command",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"build": "npm --prefix ../runtime run build && node ./scripts/build.mjs",
|
|
17
17
|
"dev": "bun ../../apps/desktop/bin/scout.ts",
|
|
18
18
|
"test:happy": "node --test test/*.test.mjs",
|
|
19
|
-
"prepack": "npm run build"
|
|
19
|
+
"prepack": "npm run build && node ../../scripts/prepare-publish-manifest.mjs .",
|
|
20
|
+
"postpack": "node ../../scripts/restore-publish-manifest.mjs ."
|
|
20
21
|
},
|
|
21
22
|
"publishConfig": {
|
|
22
23
|
"access": "public"
|