You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added highlighting for more MET keywords based on the [ConfigConstants](https://github.com/dtcenter/MET/blob/e903f8fed8916dd5a97536777c48d8c191e2c7d7/met/data/config/ConfigConstants) file.
6
+
3
7
## 0.0.1
4
8
5
9
- Initial release; My first VS Code extension ever 😀
4. Make some changes and then run the `Debug: Restart` command to see how the changes work (in the new window that pops open, open a sample config file)
18
18
19
+
Remember to update the `CHANGELOG.md` file with any updates to the new version.
19
20
20
21
21
22
## Update the package on marketplace
22
23
23
24
install vsce (I did this using conda in a new environment with npm installed, or just install vsce in the base environment)
24
25
25
-
```shell
26
+
```bash
26
27
conda install -c conda-forge nodejs
27
28
28
29
npm install -g vsce
29
30
30
31
cd path/to/.vscode/extensions/vscode-met-syntax
31
32
vsce package
32
33
33
-
# Here are some examples on incrementing the package version number
34
+
# Here are some examples on incrementing the package version number. This command edits the `package.json` file
34
35
vsce package patch # to increment the version by 0.0.1
35
36
vsce package minor # to increment the version by 0.1.0
36
37
vsce package major # to increment the version by 1.0.0
0 commit comments