mirror of
https://github.com/strapi/strapi.git
synced 2025-08-23 08:09:10 +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
11 lines
238 B
JavaScript
11 lines
238 B
JavaScript
import { defineConfig } from 'rollup';
|
|
import { baseConfig } from '../../../rollup.utils.mjs';
|
|
|
|
export default defineConfig({
|
|
...baseConfig(import.meta.dirname),
|
|
input: {
|
|
index: './src/index.ts',
|
|
bin: './src/bin.ts',
|
|
},
|
|
});
|