Skip to content

Commit fc28010

Browse files
committed
Fixed deprecated flag on npm scripts
1 parent ec29115 commit fc28010

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@
9898
},
9999
"scripts": {
100100
"build": "npm run compile -s",
101-
"compile-tf": "yq eval --prettyPrint --tojson grammars/tf.yaml > grammars/tf.json",
102-
"compile-tfvars": "yq eval --prettyPrint --tojson grammars/tfvars.yaml > grammars/tfvars.json",
103-
"compile-terragrunt": "yq eval --prettyPrint --tojson grammars/terragrunt.yaml > grammars/terragrunt.json",
104-
"compile-snippets": "yq eval --prettyPrint --tojson snippets/tf.yaml > snippets/tf.json",
101+
"compile-tf": "yq eval --prettyPrint -o=json grammars/tf.yaml > grammars/tf.json",
102+
"compile-tfvars": "yq eval --prettyPrint -o=json grammars/tfvars.yaml > grammars/tfvars.json",
103+
"compile-terragrunt": "yq eval --prettyPrint -o=json grammars/terragrunt.yaml > grammars/terragrunt.json",
104+
"compile-snippets": "yq eval --prettyPrint -o=json snippets/tf.yaml > snippets/tf.json",
105105
"compile": "npm run compile-tf && npm run compile-tfvars && npm run compile-terragrunt && npm run compile-snippets",
106106
"preversion": "git add -A .",
107107
"postversion": "npm run push -s",

0 commit comments

Comments
 (0)