mirror of
https://github.com/strapi/strapi.git
synced 2025-10-03 20:33:21 +00:00

* chore: initiate moving CM to own package * chore: refactor to handle routes * chore: init review-workflows-package * chore: fix build * chore: refactor review-workflows fe * chore: fix unit suite * feat: move rw to plugin * fix: build * fix: start up * chore: clean things up * fix: peer dependencies * chore(wip): refactor rw fe * chore: re-add admin ui * chore: fix tests & linter * chore: re-implement drag layer * fix: type * feat: review-workflow middlewares * chore: send params to CM endpoints * fix: use layout options as well, let that have the final say, just incase * feat: use doc id and locale for entity assignee and stage * fix: api tests * fix: cm updates when we update fields * chore: cleanup edit-view e2e tests * fix: build * fix: useDocumentLayout for RW options * test: fix fe tests * fix: ts * test(e2e): add review-workflow e2e tests * chore: fix bad import for cli tests * chore: delete old e2e data * chore: import EVERYTHING for DTS * chore: update dataset * fix: e2e script * fix: stage permissions * chore: remove duplicate settings menu link * fix: workflow middleware * chore: change permission * test(e2e): fix RW tests * chore: ignore dynamic attributes in DTS Co-Authored-By: Jean-Sébastien Herbaux <25851739+Convly@users.noreply.github.com> * chore: make settings rw e2e run on EE only * test(e2e): fix them all pls * fix: admin stage transition uid name * chore: fix firefox e2e ce tests --------- Co-authored-by: Josh <37798644+joshuaellis@users.noreply.github.com> Co-authored-by: Jean-Sébastien Herbaux <25851739+Convly@users.noreply.github.com>
32 lines
833 B
TypeScript
32 lines
833 B
TypeScript
import { Config, defineConfig } from '@strapi/pack-up';
|
|
|
|
const config: Config = defineConfig({
|
|
bundles: [
|
|
{
|
|
source: './admin/src/index.ts',
|
|
import: './dist/admin/index.mjs',
|
|
require: './dist/admin/index.js',
|
|
types: './dist/admin/src/index.d.ts',
|
|
tsconfig: './admin/tsconfig.build.json',
|
|
runtime: 'web',
|
|
},
|
|
{
|
|
source: './server/src/index.ts',
|
|
import: './dist/server/index.mjs',
|
|
require: './dist/server/index.js',
|
|
types: './dist/server/src/index.d.ts',
|
|
tsconfig: './server/tsconfig.build.json',
|
|
runtime: 'node',
|
|
},
|
|
],
|
|
dist: './dist',
|
|
/**
|
|
* Because we're exporting a server & client package
|
|
* which have different runtimes we want to ignore
|
|
* what they look like in the package.json
|
|
*/
|
|
exports: {},
|
|
});
|
|
|
|
export default config;
|