@ossy/app 3.5.0 → 3.5.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/cli/build.task.js CHANGED
@@ -471,6 +471,14 @@ export async function build (cliArgs = []) {
471
471
  entryFileNames: (chunk) => chunk.name === 'middleware' ? 'middleware.js' : '[name]-[hash].js',
472
472
  chunkFileNames: 'chunks/[name]-[hash].js',
473
473
  sourcemap: false,
474
+ // Absolute externals become `./node_modules/...` relative to staticOutDir,
475
+ // which does not exist. Keep the bare subpath so Node resolves from the app root.
476
+ paths(id) {
477
+ if (/[/\\]@ossy[/\\]schema[/\\]src[/\\]schema\.registry\.js$/.test(id)) {
478
+ return '@ossy/schema/system-schemas'
479
+ }
480
+ return id
481
+ },
474
482
  })
475
483
 
476
484
  await bundle.close()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/app",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "",
5
5
  "source": "./src/index.js",
6
6
  "main": "./src/index.js",
@@ -49,21 +49,21 @@
49
49
  "@babel/eslint-parser": "^7.15.8",
50
50
  "@babel/preset-react": "^7.26.3",
51
51
  "@babel/register": "^7.25.9",
52
- "@ossy/authentication": "^3.5.0",
53
- "@ossy/design-system": "^3.5.0",
52
+ "@ossy/authentication": "^3.5.1",
53
+ "@ossy/design-system": "^3.5.1",
54
54
  "@ossy/locale": "^3.4.0",
55
- "@ossy/manifest": "^3.5.0",
55
+ "@ossy/manifest": "^3.5.1",
56
56
  "@ossy/package-catalog": "^3.0.9",
57
57
  "@ossy/pages": "^3.0.9",
58
- "@ossy/platform": "^3.5.0",
59
- "@ossy/resources": "^3.5.0",
58
+ "@ossy/platform": "^3.5.1",
59
+ "@ossy/resources": "^3.5.1",
60
60
  "@ossy/router": "^3.0.9",
61
61
  "@ossy/router-react": "^3.0.9",
62
- "@ossy/schema": "^3.5.0",
62
+ "@ossy/schema": "^3.5.1",
63
63
  "@ossy/sdk": "^3.5.0",
64
64
  "@ossy/sdk-react": "^3.0.9",
65
65
  "@ossy/themes": "^3.5.0",
66
- "@ossy/workspaces": "^3.5.0",
66
+ "@ossy/workspaces": "^3.5.1",
67
67
  "@rollup/plugin-alias": "^6.0.0",
68
68
  "@rollup/plugin-babel": "^7.1.0",
69
69
  "@rollup/plugin-commonjs": "^29.0.0",
@@ -97,5 +97,5 @@
97
97
  "README.md",
98
98
  "tsconfig.json"
99
99
  ],
100
- "gitHead": "23167600f991596f122765a53f2b9df08314e115"
100
+ "gitHead": "cafa2d72ae9c4f6197ebec0b5b857919a062ceff"
101
101
  }