typespec-vscode 0.54.0-dev.0 → 0.54.0

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.
@@ -12,7 +12,7 @@ granted herein, whether by implication, estoppel or otherwise.
12
12
  2. brace-expansion version 2.0.1 (https://github.com/juliangruber/brace-expansion)
13
13
  3. lru-cache version 6.0.0 (https://github.com/isaacs/node-lru-cache)
14
14
  4. minimatch version 5.1.6 (https://github.com/isaacs/minimatch)
15
- 5. semver version 7.5.4 (https://github.com/npm/node-semver)
15
+ 5. semver version 7.6.0 (https://github.com/npm/node-semver)
16
16
  6. yallist version 4.0.0 (https://github.com/isaacs/yallist)
17
17
 
18
18
 
@@ -19175,12 +19175,17 @@ var re$1 = {exports: {}};
19175
19175
 
19176
19176
  // Coercion.
19177
19177
  // Extract anything that could conceivably be a part of a valid semver
19178
- createToken('COERCE', `${'(^|[^\\d])' +
19178
+ createToken('COERCEPLAIN', `${'(^|[^\\d])' +
19179
19179
  '(\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` +
19180
19180
  `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +
19181
- `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` +
19181
+ `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`);
19182
+ createToken('COERCE', `${src[t.COERCEPLAIN]}(?:$|[^\\d])`);
19183
+ createToken('COERCEFULL', src[t.COERCEPLAIN] +
19184
+ `(?:${src[t.PRERELEASE]})?` +
19185
+ `(?:${src[t.BUILD]})?` +
19182
19186
  `(?:$|[^\\d])`);
19183
19187
  createToken('COERCERTL', src[t.COERCE], true);
19188
+ createToken('COERCERTLFULL', src[t.COERCEFULL], true);
19184
19189
 
19185
19190
  // Tilde ranges.
19186
19191
  // Meaning is "reasonably at or greater than"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typespec-vscode",
3
- "version": "0.54.0-dev.0",
3
+ "version": "0.54.0",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec language support for VS Code",
6
6
  "homepage": "https://typespec.io",
@@ -25,7 +25,7 @@
25
25
  "type": "module",
26
26
  "main": "./dist/src/extension.cjs",
27
27
  "engines": {
28
- "vscode": "^1.85.0"
28
+ "vscode": "^1.86.0"
29
29
  },
30
30
  "activationEvents": [
31
31
  "onLanguage:typespec",
@@ -112,27 +112,25 @@
112
112
  ]
113
113
  },
114
114
  "devDependencies": {
115
- "@rollup/plugin-commonjs": "~25.0.4",
116
- "@rollup/plugin-node-resolve": "~15.2.1",
117
- "@rollup/plugin-typescript": "~11.1.5",
118
- "@types/node": "~18.11.9",
119
- "@types/vscode": "~1.85.0",
120
- "@typespec/compiler": "~0.53.0 || >=0.54.0-dev <0.54.0",
121
- "@typespec/eslint-config-typespec": "~0.53.0 || >=0.54.0-dev <0.54.0",
122
- "@typespec/internal-build-utils": "~0.53.0 || >=0.54.0-dev <0.54.0",
123
- "eslint": "^8.55.0",
124
- "c8": "~8.0.1",
125
- "vitest": "^1.2.0",
126
- "@vitest/coverage-v8": "^1.1.0",
127
- "@vitest/ui": "~1.1.3",
128
- "rimraf": "~5.0.1",
129
- "rollup": "~4.9.0",
115
+ "@rollup/plugin-commonjs": "~25.0.7",
116
+ "@rollup/plugin-node-resolve": "~15.2.3",
117
+ "@rollup/plugin-typescript": "~11.1.6",
118
+ "@types/node": "~18.11.19",
119
+ "@types/vscode": "~1.86.0",
120
+ "@vitest/coverage-v8": "^1.2.2",
121
+ "@vitest/ui": "^1.2.2",
122
+ "@vscode/vsce": "~2.23.0",
123
+ "c8": "^9.1.0",
124
+ "eslint": "^8.56.0",
125
+ "rimraf": "~5.0.5",
126
+ "rollup": "~4.9.6",
130
127
  "typescript": "~5.3.3",
131
- "@vscode/vsce": "~2.22.0",
132
- "vscode-languageclient": "~9.0.0"
128
+ "vitest": "^1.2.2",
129
+ "vscode-languageclient": "~9.0.1",
130
+ "@typespec/compiler": "~0.54.0",
131
+ "@typespec/internal-build-utils": "~0.54.0",
132
+ "@typespec/eslint-config-typespec": "~0.54.0"
133
133
  },
134
- "dependencies": {},
135
- "peerDependencies": {},
136
134
  "scripts": {
137
135
  "clean": "rimraf ./dist ./temp",
138
136
  "build": "npm run compile && npm run copy-tmlanguage && npm run generate-language-configuration && npm run generate-third-party-notices && npm run package-vsix",
index abc32dd..a9181c2 100644
Binary file