@psqr/saga-custom-component-tooling 2026090900.0.0-develop-e5eedc4.1 → 2026090900.0.0-develop-59cda52.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/dist/assetOutput.d.ts +5 -0
- package/dist/assetOutput.js +5 -0
- package/dist/vite.js +2 -0
- package/package.json +1 -1
package/dist/vite.js
CHANGED
|
@@ -2,6 +2,7 @@ import { createRequire } from 'node:module';
|
|
|
2
2
|
import { federation } from '@module-federation/vite';
|
|
3
3
|
import react from '@vitejs/plugin-react';
|
|
4
4
|
import path from 'node:path';
|
|
5
|
+
import { createSagaAssetOutput } from './assetOutput.js';
|
|
5
6
|
import { createSagaFederationShared } from './shared.js';
|
|
6
7
|
const require = createRequire(import.meta.url);
|
|
7
8
|
const JAVA_CLASS_NAME = /^(?:[A-Za-z_$][A-Za-z0-9_$]*\.)+[A-Za-z_$][A-Za-z0-9_$]*$/;
|
|
@@ -37,6 +38,7 @@ export function defineSagaCustomComponentRemote({ registrarClass, exposes, input
|
|
|
37
38
|
target: 'es2022',
|
|
38
39
|
rollupOptions: {
|
|
39
40
|
input,
|
|
41
|
+
output: createSagaAssetOutput(),
|
|
40
42
|
},
|
|
41
43
|
},
|
|
42
44
|
};
|
package/package.json
CHANGED