@flux-lang/vscode-flux 0.1.18 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +29 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,33 @@
1
1
  # Flux VS Code Extension
2
- [![VS Code Marketplace](https://img.shields.io/visual-studio-marketplace/v/cbassuarez.flux-language-support)](https://marketplace.visualstudio.com/items?itemName=cbassuarez.flux-language-support)
3
- [![VS Code Installs](https://img.shields.io/visual-studio-marketplace/i/cbassuarez.flux-language-support)](https://marketplace.visualstudio.com/items?itemName=cbassuarez.flux-language-support)
4
- [![Flux Spec](https://img.shields.io/badge/Flux-spec-00CDFE)](../../spec/overview.md)
5
- [![License: MIT](https://img.shields.io/github/license/cbassuarez/flux)](../../LICENSE)
2
+
3
+ <!-- FLUX:BADGES:BEGIN -->
4
+ <p>
5
+ <a href="https://www.npmjs.com/package/@flux-lang/vscode-flux" target="_blank" rel="noreferrer">
6
+ <picture>
7
+ <source media="(prefers-color-scheme: dark)" srcset="../../badges/generated/npm.vscode-flux.dark.svg">
8
+ <img alt="@flux-lang/vscode-flux version" src="../../badges/generated/npm.vscode-flux.light.svg">
9
+ </picture>
10
+ </a>
11
+ <a href="https://www.npmjs.com/package/@flux-lang/vscode-flux" target="_blank" rel="noreferrer">
12
+ <picture>
13
+ <source media="(prefers-color-scheme: dark)" srcset="../../badges/generated/channel.vscode-flux.stable.dark.svg">
14
+ <img alt="@flux-lang/vscode-flux stable channel" src="../../badges/generated/channel.vscode-flux.stable.light.svg">
15
+ </picture>
16
+ </a>
17
+ <a href="../../LICENSE">
18
+ <picture>
19
+ <source media="(prefers-color-scheme: dark)" srcset="../../badges/generated/license.dark.svg">
20
+ <img alt="License" src="../../badges/generated/license.light.svg">
21
+ </picture>
22
+ </a>
23
+ <a href="https://github.com/cbassuarez/flux/commits/main" target="_blank" rel="noreferrer">
24
+ <picture>
25
+ <source media="(prefers-color-scheme: dark)" srcset="../../badges/generated/maintained.dark.svg">
26
+ <img alt="Maintained status" src="../../badges/generated/maintained.light.svg">
27
+ </picture>
28
+ </a>
29
+ </p>
30
+ <!-- FLUX:BADGES:END -->
6
31
 
7
32
  1) **What this package is**
8
33
  Language support for the Flux score language (syntax highlighting + diagnostics).
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@flux-lang/vscode-flux",
3
3
  "displayName": "Flux Language Support",
4
4
  "publisher": "cbassuarez",
5
- "version": "0.1.18",
5
+ "version": "0.1.20",
6
6
  "description": "Language support for the Flux score language (syntax + diagnostics).",
7
7
  "license": "MIT",
8
8
  "author": "Sebastian Suarez-Solis",
@@ -71,7 +71,7 @@
71
71
  "theme": "dark"
72
72
  },
73
73
  "dependencies": {
74
- "@flux-lang/core": "^0.1.18"
74
+ "@flux-lang/core": "^0.1.20"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@types/vscode": "^1.85.0",