Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions build-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ const buildVersion = package.version;
*/
const angularVersion = '^5.0.0';

/**
* Required Angular CDK version for all Angular Layout packages. This version will be used
* as the peer dependency version for Angular CDK in all release packages.
*/
const cdkVersion = '^5.0.0';

/** License that will be placed inside of all created bundles. */
const buildLicense = `/**
* @license
Expand All @@ -27,6 +33,7 @@ const buildLicense = `/**
module.exports = {
projectVersion: buildVersion,
angularVersion: angularVersion,
cdkVersion: cdkVersion,
projectDir: __dirname,
packagesDir: join(__dirname, 'src'),
outputDir: join(__dirname, 'dist'),
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"node": ">= 5.4.1"
},
"dependencies": {
"@angular/cdk": "^5.2.0",
"@angular/core": "~5.2.0",
"@angular/common": "~5.2.0",
"@angular/compiler": "~5.2.0",
Expand All @@ -40,7 +41,6 @@
},
"devDependencies": {
"@angular/animations": "~5.2.0",
"@angular/cdk": "^5.2.0",
"@angular/compiler-cli": "~5.2.0",
"@angular/forms": "~5.2.0",
"@angular/http": "~5.2.0",
Expand Down
Loading