-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild-config.js
More file actions
24 lines (20 loc) · 737 Bytes
/
Copy pathbuild-config.js
File metadata and controls
24 lines (20 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* Build configuration for the packaging tool. This file will be automatically detected and used
* to build the different packages inside of Layout.
*/
const { join } = require('path');
const packageJson = require('./package.json');
/** Current version of the project*/
const buildVersion = packageJson.version;
/**
* Required Angular version for all Angular Layout packages. This version will be used
* as the peer dependency version for Angular in all release packages.
*/
const angularVersion = packageJson.requiredAngularVersion;
module.exports = {
projectVersion: buildVersion,
angularVersion: angularVersion,
projectDir: __dirname,
packagesDir: join(__dirname, 'src'),
outputDir: join(__dirname, 'dist'),
};