Skip to content

Commit db16ad2

Browse files
committed
rename cache as artifacts
1 parent af69e2c commit db16ad2

7 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
# 0.0.31
4+
- rename `cache` as `artifacts`
5+
36
# 0.0.30
47
- update enum syntax to ~<identifier>
58

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "terrabuild",
44
"displayName": "Terrabuild",
55
"description": "Syntax highlighting for Terrabuild",
6-
"version": "0.0.30",
6+
"version": "0.0.31",
77
"publisher": "MagnusOpera",
88
"license": "FSL-1.1-Apache-2.0",
99
"repository": {

syntaxes/terrabuild-project.tmLanguage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"patterns": [
8686
{
8787
"name": "meta.assignment.workspace",
88-
"begin": "\\b(outputs|depends_on|cache|rebuild)\\b(?=\\s*=)",
88+
"begin": "\\b(outputs|depends_on|artifacts|rebuild)\\b(?=\\s*=)",
8989
"beginCaptures": {
9090
"1": { "name": "keyword.control" }
9191
},

syntaxes/terrabuild-workspace.tmLanguage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"patterns": [
9696
{
9797
"name": "meta.assignment.workspace",
98-
"begin": "\\b(depends_on|cache|rebuild)\\b(?=\\s*=)",
98+
"begin": "\\b(depends_on|artifacts|rebuild)\\b(?=\\s*=)",
9999
"beginCaptures": {
100100
"1": { "name": "keyword.control" }
101101
},

tests/PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ target dist {
2929
depends_on = [ target.build
3030
target.^dist ]
3131
outputs = []
32-
cache = ~remote
32+
artifacts = ~remote
3333
unknown = "toto"
3434

3535
@dotnet tutu { single = true }

tests/WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ target build {
1414
# target definition
1515
depends_on = [ # comment in list
1616
target.^build ]
17-
cache = ~local
17+
artifacts = ~local
1818
rebuild = true
1919

2020
unknown = "toto"

0 commit comments

Comments
 (0)