diff --git a/scripts/circleci/publish-snapshots.sh b/scripts/circleci/publish-snapshots.sh index 5a212175f3d4..b3551552d5f5 100755 --- a/scripts/circleci/publish-snapshots.sh +++ b/scripts/circleci/publish-snapshots.sh @@ -8,9 +8,9 @@ cd $(dirname ${0})/../.. # Deploy build artifacts to the GitHub build repositories. The release output is already # fetched from the CircleCI workspace storage. -./scripts/deploy/publish-build-artifacts.sh --no-build +./scripts/deploy/publish-build-artifacts.sh # Deploy the docs content to the Github repository. We don't want to build the examples # package here again because it's already fetched from the CircleCI workspace storage. -./scripts/deploy/publish-docs-content.sh --no-build +./scripts/deploy/publish-docs-content.sh diff --git a/scripts/deploy/publish-build-artifacts.sh b/scripts/deploy/publish-build-artifacts.sh index 87d373062de9..7c7ff81f0174 100755 --- a/scripts/deploy/publish-build-artifacts.sh +++ b/scripts/deploy/publish-build-artifacts.sh @@ -56,11 +56,6 @@ publishPackage() { echo "Starting publish process of ${packageName} for ${buildVersionName} into ${branchName}.." - if [[ ! ${COMMAND_ARGS} == *--no-build* ]]; then - # Create a release of the current repository. - $(npm bin)/gulp ${packageName}:build-release:clean - fi - # Prepare cloning the builds repository rm -rf ${repoDir} mkdir -p ${repoDir} diff --git a/src/bazel-tsconfig-build.json b/src/bazel-tsconfig-build.json index 1a0c7ecbc4b3..7738696eca08 100644 --- a/src/bazel-tsconfig-build.json +++ b/src/bazel-tsconfig-build.json @@ -1,8 +1,6 @@ // TypeScript configuration that will be used to build entry-points of the CDK. To avoid // duplicate logic, we decided to just have one package-wide tsconfig file that will be -// used by Bazel to build the sources for an entry-point. This means that we no longer -// need multiple tsconfig files (build & test) for each entry-point once Bazel replaces -// our gulp build system. +// used by Bazel to build the sources for an entry-point. { "compilerOptions": { "baseUrl": ".", @@ -35,8 +33,6 @@ "types": ["tslib"] }, "bazelOptions": { - // Note: We can remove this once we fully switched away from Gulp. Currently we still set - // some options here just in favor of the standard tsconfig's which extending this one. "suppressTsconfigOverrideWarnings": true } } diff --git a/src/material-experimental/mdc-helpers/_mdc-helpers.scss b/src/material-experimental/mdc-helpers/_mdc-helpers.scss index 58abe05ac36c..219e6995a159 100644 --- a/src/material-experimental/mdc-helpers/_mdc-helpers.scss +++ b/src/material-experimental/mdc-helpers/_mdc-helpers.scss @@ -1,6 +1,5 @@ // TODO(mmalerba): this file should be split into separate cohesive partials for things like -// "theming", "typography", "core". Currently splitting it is difficult because of our brittle -// gulp-based release build process. We can update this when we switch to bazel. +// "theming", "typography", "core". @use '@material/feature-targeting' as mdc-feature-targeting; @use '@material/typography' as mdc-typography; diff --git a/src/material-experimental/mdc-snack-bar/tsconfig-build.json b/src/material-experimental/mdc-snack-bar/tsconfig-build.json deleted file mode 100644 index 8d620608c839..000000000000 --- a/src/material-experimental/mdc-snack-bar/tsconfig-build.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "../tsconfig-build", - "files": ["public-api.ts", "../dev-mode-types.d.ts"], - "angularCompilerOptions": { - "annotateForClosureCompiler": true, - "strictMetadataEmit": true, - "flatModuleOutFile": "index.js", - "flatModuleId": "@angular/material-experimental/mdc-snackbar", - "skipTemplateCodegen": true, - "fullTemplateTypeCheck": true - } -} diff --git a/src/material-experimental/mdc-table/tsconfig-build.json b/src/material-experimental/mdc-table/tsconfig-build.json deleted file mode 100644 index b5209313fdba..000000000000 --- a/src/material-experimental/mdc-table/tsconfig-build.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "../tsconfig-build", - "files": ["public-api.ts", "../dev-mode-types.d.ts"], - "angularCompilerOptions": { - "annotateForClosureCompiler": true, - "strictMetadataEmit": true, - "flatModuleOutFile": "index.js", - "flatModuleId": "@angular/material-experimental/mdc-table", - "skipTemplateCodegen": true, - "fullTemplateTypeCheck": true - } -}