Skip to content

Commit

Permalink
Update package.json with activationEvents so vsce package works
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricedb committed Mar 24, 2024
1 parent f874437 commit f3eac3a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"color": "#193549",
"theme": "dark"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
Expand Down Expand Up @@ -64,7 +65,9 @@
"items": {
"type": "string"
},
"default": [ "/*WAIT*/" ],
"default": [
"/*WAIT*/"
],
"description": "When using typeChunksFromFile, Presentation Buddy will pause when it finds any matching string. Matches are NOT copied to the output.",
"scope": "user"
},
Expand All @@ -79,7 +82,10 @@
"items": {
"type": "string"
},
"default": [ "(", "=" ],
"default": [
"(",
"="
],
"description": "When using typeChunksFromFile, Presentation Buddy will pause after typing any series of matching strings.",
"scope": "user"
},
Expand All @@ -88,7 +94,9 @@
"items": {
"type": "string"
},
"default": [ "/*SKIP*/" ],
"default": [
"/*SKIP*/"
],
"description": "When using typeChunksFromFile, Presentation Buddy will skip any line containing any matching string.",
"scope": "user"
}
Expand Down

0 comments on commit f3eac3a

Please sign in to comment.