Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 32e6520

Browse files
CaerusKaruThomasBurleson
authored andcommitted
refactor(lib): change package structure to allow for entrypoints
* Add entrypoints for `core`, `flex`, and `extended`. > All entrypoints have a module that can be imported separately * Remove the BiDi clone from the CDK and add a direct/peer dependency * Rename `ServerStylesheet` to `StylesheetMap` Fixes PR #631.
1 parent cb0beab commit 32e6520

File tree

109 files changed

+7192
-34390
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+7192
-34390
lines changed

build-config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ const buildVersion = package.version;
1515
*/
1616
const angularVersion = '^5.0.0';
1717

18+
/**
19+
* Required Angular CDK version for all Angular Layout packages. This version will be used
20+
* as the peer dependency version for Angular CDK in all release packages.
21+
*/
22+
const cdkVersion = '^5.0.0';
23+
1824
/** License that will be placed inside of all created bundles. */
1925
const buildLicense = `/**
2026
* @license
@@ -27,6 +33,7 @@ const buildLicense = `/**
2733
module.exports = {
2834
projectVersion: buildVersion,
2935
angularVersion: angularVersion,
36+
cdkVersion: cdkVersion,
3037
projectDir: __dirname,
3138
packagesDir: join(__dirname, 'src'),
3239
outputDir: join(__dirname, 'dist'),

docs/documentation/BreakPoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const BreakPointsProvider = {
1919
// ObservableMediaProvider // easy subscription injectable `media$` matchMedia observable
2020
]
2121
})
22-
export class MediaQueriesModule {
22+
export class CoreModule {
2323
}
2424
```
2525

0 commit comments

Comments
 (0)