@jointhedots/gear 1.1.17 → 1.2.0
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/esm/builder/build-app-bundle.js +11 -12
- package/esm/builder/build-app-host.js +48 -6
- package/esm/builder/build-application.js +4 -5
- package/esm/builder/build-library.js +5 -3
- package/esm/builder/build-target.js +6 -6
- package/esm/builder/helpers/emit-bundle-manifest.js +1 -1
- package/esm/builder/helpers/emit-components-dts.js +66 -0
- package/esm/builder/helpers/emit-esmodules.js +1 -1
- package/esm/builder/helpers/emit-package-manifest.js +1 -1
- package/esm/builder/helpers/emit-static-assets.js +2 -2
- package/esm/builder/helpers/emit-typescript-definition.js +36 -17
- package/esm/cli.js +2 -0
- package/esm/commands/install.js +67 -0
- package/esm/commands/make.js +6 -5
- package/esm/commands/publish.js +1 -1
- package/esm/commands/serve.js +3 -3
- package/esm/publish/publish_aws_s3.js +2 -2
- package/esm/utils/normalized-name.js +11 -9
- package/esm/{model → workspace}/helpers/create-manifests.js +7 -1
- package/esm/{model → workspace}/helpers/discover-workspace.js +134 -154
- package/esm/workspace/packager.js +53 -0
- package/esm/workspace/packagers/packager-standard.js +64 -0
- package/esm/{model → workspace}/storage.js +15 -10
- package/esm/{model → workspace}/workspace.js +23 -14
- package/package.json +7 -3
- /package/esm/{model → workspace}/component.js +0 -0
- /package/esm/{model → workspace}/helpers/config-loader.js +0 -0
- /package/esm/{model → workspace}/helpers/lockfile.js +0 -0
- /package/esm/{model → workspace}/helpers/logger.js +0 -0
- /package/esm/{model → workspace}/helpers/package-npm.js +0 -0
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jointhedots/gear",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"packageManager": "pnpm@10.30.3",
|
|
5
6
|
"bin": {
|
|
6
7
|
"jointhedots-gear": "esm/cli.js"
|
|
7
8
|
},
|
|
9
|
+
"exports": {
|
|
10
|
+
"./workspace": "./esm/workspace.js"
|
|
11
|
+
},
|
|
8
12
|
"files": [
|
|
9
13
|
"esm",
|
|
10
14
|
"browser-modules",
|
|
@@ -23,7 +27,7 @@
|
|
|
23
27
|
":build:lib:ui": "node --enable-source-maps --watch-path=esm esm/cli make --libs @jointhedots/ui --devmode --ws ../jointhedots-core/packages/jointhedots-ui",
|
|
24
28
|
":build:app": "node --enable-source-maps --watch-path=esm esm/cli make --apps playground:ui --ws ../jointhedots-core",
|
|
25
29
|
"serve:mono": "node --enable-source-maps --watch-path=esm esm/cli serve --app playground:ui --devmode --port 3002 --ws ../jointhedots-core",
|
|
26
|
-
"serve:host": "node --enable-source-maps --watch-path=esm esm/cli serve --app playground:ui:host
|
|
30
|
+
"serve:host": "node --enable-source-maps --watch-path=esm esm/cli serve --app playground:ui:host --devmode --port 3002 --ws ../jointhedots-core",
|
|
27
31
|
"serve:sfe": "node --enable-source-maps --watch-path=esm esm/cli serve --app sfe-demo --devmode --ws ../sf-explorer-app",
|
|
28
32
|
"serve:demo": "node --enable-source-maps --watch-path=esm esm/cli serve --app sfe-demo --devmode --ws ../sf-explorer-demo",
|
|
29
33
|
"make:sfe": "node --enable-source-maps --watch-path=esm esm/cli make --libs @sf-explorer/app --devmode --ws ../sf-explorer-app",
|
|
@@ -60,4 +64,4 @@
|
|
|
60
64
|
"bundleDependencies": [
|
|
61
65
|
"@jspm/core"
|
|
62
66
|
]
|
|
63
|
-
}
|
|
67
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|