@ripple-ts/adapter-vercel 0.3.48 → 0.3.51
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 +35 -0
- package/package.json +3 -3
- package/src/adapt.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @ripple-ts/adapter-vercel
|
|
2
2
|
|
|
3
|
+
## 0.3.51
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`f1b1f94`](https://github.com/Ripple-TS/ripple/commit/f1b1f9475553cbe3632a5cc9794a8f54615c29f2)
|
|
8
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Patch packages currently
|
|
9
|
+
versioned at 0.3.50 to fix the bump that caused major 1.0.0 release with a minor
|
|
10
|
+
changeset.
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
[[`f1b1f94`](https://github.com/Ripple-TS/ripple/commit/f1b1f9475553cbe3632a5cc9794a8f54615c29f2)]:
|
|
14
|
+
- @ripple-ts/adapter@0.3.51
|
|
15
|
+
- @ripple-ts/adapter-node@0.3.51
|
|
16
|
+
|
|
17
|
+
## 0.3.50
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#1074](https://github.com/Ripple-TS/ripple/pull/1074)
|
|
22
|
+
[`246079b`](https://github.com/Ripple-TS/ripple/commit/246079be73882a8e3192672320005eaa132ade28)
|
|
23
|
+
Thanks [@RazinShafayet2007](https://github.com/RazinShafayet2007)! - Handle Node
|
|
24
|
+
26 in Vercel adapter runtime detection.
|
|
25
|
+
|
|
26
|
+
- Updated dependencies []:
|
|
27
|
+
- @ripple-ts/adapter@0.3.50
|
|
28
|
+
- @ripple-ts/adapter-node@0.3.50
|
|
29
|
+
|
|
30
|
+
## 0.3.49
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies []:
|
|
35
|
+
- @ripple-ts/adapter@0.3.49
|
|
36
|
+
- @ripple-ts/adapter-node@0.3.49
|
|
37
|
+
|
|
3
38
|
## 0.3.48
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Vercel adapter for Ripple metaframework (Build Output API v3)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Dominic Gannaway",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.51",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "src/index.js",
|
|
9
9
|
"main": "src/index.js",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@vercel/nft": "^1.3.2",
|
|
22
|
-
"@ripple-ts/adapter": "0.3.
|
|
23
|
-
"@ripple-ts/adapter-node": "0.3.
|
|
22
|
+
"@ripple-ts/adapter": "0.3.51",
|
|
23
|
+
"@ripple-ts/adapter-node": "0.3.51"
|
|
24
24
|
},
|
|
25
25
|
"homepage": "https://ripple-ts.com",
|
|
26
26
|
"repository": {
|
package/src/adapt.js
CHANGED
|
@@ -48,7 +48,7 @@ const VERCEL_OUTPUT_DIR = '.vercel/output';
|
|
|
48
48
|
*/
|
|
49
49
|
function get_default_runtime() {
|
|
50
50
|
const major = Number(process.version.slice(1).split('.')[0]);
|
|
51
|
-
const valid = [
|
|
51
|
+
const valid = [22, 24, 26];
|
|
52
52
|
|
|
53
53
|
if (!valid.includes(major)) {
|
|
54
54
|
throw new Error(
|