@definitelytyped/typescript-packages 0.1.2 → 0.1.3
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.
- package/CHANGELOG.md +10 -0
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @definitelytyped/typescript-packages
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2c5e174: Drop support for TypeScript 4.7, support TypeScript 5.5
|
|
8
|
+
- 2a6318d: Bump TypeScript to 5.5
|
|
9
|
+
- Updated dependencies [2c5e174]
|
|
10
|
+
- Updated dependencies [2a6318d]
|
|
11
|
+
- @definitelytyped/typescript-versions@0.1.3
|
|
12
|
+
|
|
3
13
|
## 0.1.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.resolve =
|
|
3
|
+
exports.resolve = resolve;
|
|
4
4
|
function resolve(version) {
|
|
5
5
|
return require.resolve(`typescript-${version}`);
|
|
6
6
|
}
|
|
7
|
-
exports.resolve = resolve;
|
|
8
7
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAEA,0BAEC;AAFD,SAAgB,OAAO,CAAC,OAA0B;IAChD,OAAO,OAAO,CAAC,OAAO,CAAC,cAAc,OAAO,EAAE,CAAC,CAAC;AAClD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@definitelytyped/typescript-packages",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Reexport of all supported TypeScript versions",
|
|
5
5
|
"author": "Andrew Branch <andrew@wheream.io>",
|
|
6
6
|
"homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/typescript-packages#readme",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"node": ">=18.18.0"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"typescript-4.7": "npm:typescript@~4.7.0-0",
|
|
25
24
|
"typescript-4.8": "npm:typescript@~4.8.0-0",
|
|
26
25
|
"typescript-4.9": "npm:typescript@~4.9.0-0",
|
|
27
26
|
"typescript-5.0": "npm:typescript@~5.0.0-0",
|
|
@@ -31,6 +30,6 @@
|
|
|
31
30
|
"typescript-5.4": "npm:typescript@~5.4.0-0",
|
|
32
31
|
"typescript-5.5": "npm:typescript@~5.5.0-0",
|
|
33
32
|
"typescript-5.6": "npm:typescript@~5.6.0-0",
|
|
34
|
-
"@definitelytyped/typescript-versions": "0.1.
|
|
33
|
+
"@definitelytyped/typescript-versions": "0.1.3"
|
|
35
34
|
}
|
|
36
35
|
}
|