@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.
@@ -0,0 +1,5 @@
1
+ export declare const createSagaAssetOutput: () => {
2
+ entryFileNames: string;
3
+ chunkFileNames: string;
4
+ assetFileNames: string;
5
+ };
@@ -0,0 +1,5 @@
1
+ export const createSagaAssetOutput = () => ({
2
+ entryFileNames: 'assets/[name]-[hash:8].js',
3
+ chunkFileNames: 'assets/[name]-[hash:8].js',
4
+ assetFileNames: 'assets/[name]-[hash:8][extname]',
5
+ });
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@psqr/saga-custom-component-tooling",
3
- "version": "2026090900.0.0-develop-e5eedc4.1",
3
+ "version": "2026090900.0.0-develop-59cda52.1",
4
4
  "description": "Version-matched build tooling for Saga custom component remotes",
5
5
  "repository": {
6
6
  "type": "git",