Skip to content

Commit 1f17456

Browse files
committed
build: include src/cdk in pnpm workspace
This will allow pnpm to identifiy dependencies like `parse5` to be understood as non-dev dependencies, so that they are propagated with `rules_js` even when `cdk` is linked as `npm_package`. This is necessary when using the npm package of CDK in the Material schematic tests. To do this we need to give up on our non-statically readable substitutions for tslib and RxJS but this is acceptable as those don't change often and the benefits of the pnpm workspace are more important. We move `parse5` from `optionalDependencies` to `dependencies` so that pnpm recognizes this as non-dev dependency for the runtime execution of the CDK package. `parse5` doesn't have any native code, so `optionalDependencies` vs `dependencies` doesn't make a difference. Long-term we should consider simply bundling `parse5` here.
1 parent d2e154c commit 1f17456

File tree

17 files changed

+84
-127
lines changed

17 files changed

+84
-127
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# @generated
22
# Input hashes for repository rule npm_translate_lock(name = "npm2", pnpm_lock = "@//:pnpm-lock.yaml").
33
# This file should be checked into version control along with the pnpm-lock.yaml file.
4-
.npmrc=-2023857461
4+
.npmrc=-1406867100
55
package.json=-370577278
6-
pnpm-lock.yaml=997015112
6+
pnpm-lock.yaml=-1162470554
77
pnpm-workspace.yaml=1711114604
8+
src/cdk/package.json=-908433069
89
yarn.lock=-987404687

.bazelignore

+2
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ integration/yarn-pnp-compat/.yarn/cache
1717
integration/yarn-pnp-compat/.yarn/unplugged
1818
integration/yarn-pnp-compat/.yarn/install-state.gz
1919
integration/yarn-pnp-compat/node_modules
20+
21+
src/cdk/node_modules

.npmrc

+5
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ engine-strict = false
55
# projects using rules_js so that pnpm outside of Bazel lays out a node_modules tree similar to what
66
# rules_js lays out under Bazel (without a hidden node_modules/.pnpm/node_modules)
77
hoist=false
8+
9+
# Avoid pnpm auto-installing peer dependencies. We want to be explicit about our versions used
10+
# for peer dependencies, avoiding potential mismatches. In addition, it ensures we can continue
11+
# to rely on peer dependency placeholders substituted via Bazel.
12+
auto-install-peers=false

WORKSPACE

+1
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ npm_translate_lock(
175175
data = [
176176
"//:package.json",
177177
"//:pnpm-workspace.yaml",
178+
"//src/cdk:package.json",
178179
],
179180
npmrc = "//:.npmrc",
180181
pnpm_lock = "//:pnpm-lock.yaml",

packages.bzl

-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# Each individual package uses a placeholder for the version of Angular to ensure they're
2-
# all in-sync. This map is passed to each ng_package rule to stamp out the appropriate
3-
# version for the placeholders.
4-
TSLIB_PACKAGE_VERSION = "^2.3.0"
5-
RXJS_PACKAGE_VERSION = "^6.5.3 || ^7.4.0"
6-
71
# Packages which are versioned together on npm
82
ANGULAR_COMPONENTS_SCOPED_PACKAGES = ["@angular/%s" % p for p in [
93
"material",
@@ -27,12 +21,8 @@ PKG_GROUP_REPLACEMENTS = {
2721
NPM_PACKAGE_SUBSTITUTIONS = dict(PKG_GROUP_REPLACEMENTS, **{
2822
# Peer dependency version on the Angular framework.
2923
"0.0.0-NG": "{STABLE_FRAMEWORK_PEER_DEP_RANGE}",
30-
# Version of `tslib`
31-
"0.0.0-TSLIB": TSLIB_PACKAGE_VERSION,
3224
# Version of the local package being built, generated via the `--workspace_status_command` flag.
3325
"0.0.0-PLACEHOLDER": "{STABLE_PROJECT_VERSION}",
34-
# Version of `rxjs`
35-
"0.0.0-RXJS": RXJS_PACKAGE_VERSION,
3626
})
3727

3828
NO_STAMP_NPM_PACKAGE_SUBSTITUTIONS = dict(NPM_PACKAGE_SUBSTITUTIONS, **{

0 commit comments

Comments
 (0)