-
Notifications
You must be signed in to change notification settings - Fork 6.7k
/
build-config.js
41 lines (35 loc) · 1.3 KB
/
build-config.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Build configuration for the packaging tool. This file will be automatically detected and used
* to build the different packages inside of Material.
*/
const {join} = require('path');
const packageJson = require('./package.json');
/** Current version of the project*/
const buildVersion = packageJson.version;
/**
* Required Angular version for all Angular Material packages. This version will be used
* as the peer dependency version for Angular in all release packages.
*/
const angularVersion = packageJson.requiredAngularVersion;
/**
* Required MDC Web version for all Angular Material packages. This version will be used
* as the peer dependency version for MDC Web in all release packages that require MDC Web.
*/
const mdcVersion = packageJson.requiredMDCVersion;
/** License that will be placed inside of all created bundles. */
const buildLicense = `/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/`;
module.exports = {
projectVersion: buildVersion,
angularVersion: angularVersion,
mdcVersion: mdcVersion,
projectDir: __dirname,
packagesDir: join(__dirname, 'src'),
outputDir: join(__dirname, 'dist'),
licenseBanner: buildLicense
};