-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpost_build.js
executable file
·26 lines (24 loc) · 1 KB
/
post_build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env node
/**
* This small script simply creates an NPM package with no dependencies. While
* Angular CLI needs the dependencies to properly build the app, the compiled
* product is completely self-contained. When MAGE pulls the web app package
* via npm install, there is no need to install all the web app dependencies,
* only the compiled bundle that MAGE serves to the web browser.
*/
const fs = require('fs-extra');
const path = require('path');
const process = require('process');
const packageDesc = require('./package');
delete packageDesc.private;
delete packageDesc.scripts;
delete packageDesc.dependencies;
delete packageDesc.devDependencies;
delete packageDesc.main;
packageDesc.files = ['app', 'admin'];
packageDesc.peerDependencies = {
'@ngageoint/mage.service': `^${packageDesc.version}`
};
const outputPathDir = path.resolve(process.cwd(), "dist");
const packageDescPath = path.join(outputPathDir, 'package.json');
fs.writeFileSync(packageDescPath, JSON.stringify(packageDesc, null, 2));