mirror of
https://github.com/strapi/strapi.git
synced 2025-11-19 19:50:46 +00:00
* feat(cli): add cloud commands Co-authored-by: Gonzalo Garcia <nouvellegon@gmail.com> Co-authored-by: nathan-pichon <nathan.pichon@strapi.io> Co-authored-by: Abdallah M <55534657+abdallahmz@users.noreply.github.com>
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',
|
|
});
|