Production build #1655
Luligu
started this conversation in
Feature requests (vote via thumbs up)
Replies: 2 comments 4 replies
-
|
My proposal would be to define an own build "target" aka tsconfig for such a limited build and maybe publish extra "prod" packages or such maybe under a special npm tag like "prod" ... @lauckhart WDYT? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
This is what a bundler is for, we have documentation here. One advantage a bundler has over any artifact that we could provide is that it will drop code that is not used by the application. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I was wondering if it could be possible to have a matter.js production build to use in the final stage of building the application using matter.js for production inside the workflow.
Like react to the --omit=dev parameter in npm install --omit=dev or also any environment var to set to obtain the same effect like here:
"extends": "./whatever.json",
"compilerOptions": {
"incremental": false,
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"removeComments": true
},
This would allow to save time, space and memory in all condition where these factors are limited.
Beta Was this translation helpful? Give feedback.
All reactions