mirror of
https://github.com/strapi/strapi.git
synced 2025-09-04 14:23:03 +00:00

chore: fetch template only if name matches name convention chore: linting chore: fix tests chore: fix npm scripts test: try to fix test
15 lines
529 B
JavaScript
15 lines
529 B
JavaScript
import { defineConfig } from 'rollup';
|
|
import { baseConfig } from '../../rollup.utils.mjs';
|
|
|
|
export default defineConfig({
|
|
...baseConfig(import.meta.dirname),
|
|
input: {
|
|
index: import.meta.dirname + '/src/index.ts',
|
|
'after-env': import.meta.dirname + '/src/after-env.ts',
|
|
environment: import.meta.dirname + '/src/environment.ts',
|
|
'file-mock': import.meta.dirname + '/src/file-mock.ts',
|
|
'global-setup': import.meta.dirname + '/src/global-setup.ts',
|
|
setup: import.meta.dirname + '/src/setup.ts',
|
|
},
|
|
});
|