forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-config.js
31 lines (26 loc) · 938 Bytes
/
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
/**
* 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 package = require('./package.json');
/** Current version of the project*/
const buildVersion = package.version;
/** Required Angular version for the project. */
const angularVersion = package.dependencies['@angular/core'];
/** 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,
projectDir: __dirname,
packagesDir: join(__dirname, 'src'),
outputDir: join(__dirname, 'dist'),
licenseBanner: buildLicense
};