mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 15:06:11 +00:00

* Merge branch 'develop' into v5/main * fix: missing dependency * fix: yarn lock * fix: prettier * fix(cloud-cli): update types and structure for v5 (#20567) * chore: skip cloud deployment until ready * fix: webhook tests * chore: revert schema changes * fix: versions --------- Co-authored-by: Nathan Pichon <nathan.pichon@strapi.io>
21 lines
448 B
TypeScript
21 lines
448 B
TypeScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import { defineConfig } from '@strapi/pack-up';
|
|
|
|
export default defineConfig({
|
|
bundles: [
|
|
{
|
|
source: './src/index.ts',
|
|
import: './dist/index.js',
|
|
require: './dist/index.js',
|
|
types: './dist/index.d.ts',
|
|
runtime: 'node',
|
|
},
|
|
{
|
|
source: './src/bin.ts',
|
|
require: './dist/bin.js',
|
|
runtime: 'node',
|
|
},
|
|
],
|
|
dist: './dist',
|
|
});
|