-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(builtin): add test case for @bazel/hide-bazel-files bug
- Loading branch information
1 parent
7e777c7
commit 2a63ed6
Showing
4 changed files
with
11 additions
and
32 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"dependencies": { | ||
"typescript": "2.9.1", | ||
"rxjs": "6.4.0" | ||
"rxjs": "6.4.0", | ||
"typescript": "2.9.1" | ||
}, | ||
"devDependencies": { | ||
"@bazel/hide-bazel-files": "file:../../dist/npm_bazel_hide-bazel-files" | ||
"@bazel/hide-bazel-files": "0.32.1" | ||
}, | ||
"scripts": { | ||
"postinstall": "hide-bazel-files", | ||
"test": "bazel test ... && rm -rf node_modules && bazel test ... && rm -rf node_modules && yarn install && bazel test ..." | ||
"//": "we use fixed version of @bazel/hide-bazel-files above as npm makes symlinks for `file:` deps and @bazel/hide-bazel-files doesn't work as a symlink because that would require --preserve-symlinks-main", | ||
"test": "bazel test ... && rm -rf node_modules && bazel test ... && rm -rf node_modules && npm install && npm add @schematics/[email protected] && bazel test ... && npm remove @schematics/angular" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"dependencies": { | ||
"typescript": "2.9.1", | ||
"rxjs": "6.4.0" | ||
"rxjs": "6.4.0", | ||
"typescript": "2.9.1" | ||
}, | ||
"devDependencies": { | ||
"@bazel/hide-bazel-files": "file:../../dist/npm_bazel_hide-bazel-files" | ||
}, | ||
"scripts": { | ||
"test": "bazel test ... && rm -rf node_modules && bazel test ... && rm -rf node_modules && yarn install && bazel test ..." | ||
"test": "bazel test ... && rm -rf node_modules && bazel test ... && rm -rf node_modules && yarn install && yarn add @schematics/[email protected] && bazel test ... && yarn remove @schematics/angular" | ||
} | ||
} |