-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Publish vscode extension * Update to latest rules_player
- Loading branch information
Showing
6 changed files
with
182 additions
and
14 deletions.
There are no files selected for viewing
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
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,15 @@ | ||
load("@rules_player//player/vsce:package.bzl", "package") | ||
load("@rules_player//player/vsce:index.bzl", "vsce") | ||
|
||
package( | ||
name = "player-syntax", | ||
vsce( | ||
name = "vscode-plugin", | ||
substitutions = { | ||
"__VERSION__": "{STABLE_VERSION}", | ||
"0.0.0-PLACEHOLDER": "{STABLE_VERSION}", | ||
"__GIT_COMMIT__": "{STABLE_GIT_COMMIT}", | ||
}, | ||
data = [ | ||
"package.json", | ||
".vscodeignore", | ||
"language-configuration.json", | ||
# When version gets stamped the build needs to rerun since Bazel can't stamp the binary output | ||
"//:VERSION" | ||
"language-configuration.json" | ||
] + glob(["syntaxes/*"]) | ||
) | ||
) |
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
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
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
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