edge-functions 2.6.0 → 2.6.1

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 CHANGED
@@ -1,3 +1,20 @@
1
+ ### [2.6.1](https://github.com/aziontech/vulcan/compare/v2.6.0...v2.6.1) (2024-04-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * presets manifest (rewrite rule) ([#309](https://github.com/aziontech/vulcan/issues/309)) ([b7daad1](https://github.com/aziontech/vulcan/commit/b7daad105c66d0eecba5cb680f3f4283274a20b4))
7
+ * presets rules (rewrite) ([214a503](https://github.com/aziontech/vulcan/commit/214a503f8539445257ee93f2a1eb5b718a58eb36))
8
+ * presets rules (rewrite) ([#308](https://github.com/aziontech/vulcan/issues/308)) ([518e46e](https://github.com/aziontech/vulcan/commit/518e46e801a6a4407dd010b97b1321cc1e912da2))
9
+
10
+ ### [2.6.1-stage.1](https://github.com/aziontech/vulcan/compare/v2.6.0...v2.6.1-stage.1) (2024-04-19)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * presets rules (rewrite) ([214a503](https://github.com/aziontech/vulcan/commit/214a503f8539445257ee93f2a1eb5b718a58eb36))
16
+ * presets rules (rewrite) ([#308](https://github.com/aziontech/vulcan/issues/308)) ([518e46e](https://github.com/aziontech/vulcan/commit/518e46e801a6a4407dd010b97b1321cc1e912da2))
17
+
1
18
  ## [2.6.0](https://github.com/aziontech/vulcan/compare/v2.5.0...v2.6.0) (2024-04-19)
2
19
 
3
20
 
@@ -34,7 +34,7 @@ const manifest = {
34
34
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
35
35
  // eslint-disable-next-line no-template-curly-in-string
36
36
  rewrite: {
37
- set: (uri) => `${uri}index.html`,
37
+ set: (uri) => `${uri}/index.html`,
38
38
  },
39
39
  },
40
40
  ],
@@ -38,7 +38,7 @@ const manifest = {
38
38
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
39
39
  // eslint-disable-next-line no-template-curly-in-string
40
40
  rewrite: {
41
- set: (uri) => `${uri}index.html`,
41
+ set: (uri) => `${uri}/index.html`,
42
42
  },
43
43
  },
44
44
  ],
@@ -31,7 +31,7 @@ const manifest = {
31
31
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
32
32
  // eslint-disable-next-line no-template-curly-in-string
33
33
  rewrite: {
34
- set: (uri) => `${uri}index.html`,
34
+ set: (uri) => `${uri}/index.html`,
35
35
  },
36
36
  },
37
37
  ],
@@ -38,7 +38,7 @@ const manifest = {
38
38
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
39
39
  // eslint-disable-next-line no-template-curly-in-string
40
40
  rewrite: {
41
- set: (uri) => `${uri}index.html`,
41
+ set: (uri) => `${uri}/index.html`,
42
42
  },
43
43
  },
44
44
  ],
@@ -38,7 +38,7 @@ const manifest = {
38
38
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
39
39
  // eslint-disable-next-line no-template-curly-in-string
40
40
  rewrite: {
41
- set: (uri) => `${uri}index.html`,
41
+ set: (uri) => `${uri}/index.html`,
42
42
  },
43
43
  },
44
44
  ],
@@ -44,7 +44,7 @@ const cdnManifest = {
44
44
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
45
45
  // eslint-disable-next-line no-template-curly-in-string
46
46
  rewrite: {
47
- set: (uri) => `${uri}index.html`,
47
+ set: (uri) => `${uri}/index.html`,
48
48
  },
49
49
  },
50
50
  ],
@@ -32,7 +32,7 @@ const manifest = {
32
32
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
33
33
  // eslint-disable-next-line no-template-curly-in-string
34
34
  rewrite: {
35
- set: (uri) => `${uri}index.html`,
35
+ set: (uri) => `${uri}/index.html`,
36
36
  },
37
37
  },
38
38
  ],
@@ -38,7 +38,7 @@ const manifest = {
38
38
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
39
39
  // eslint-disable-next-line no-template-curly-in-string
40
40
  rewrite: {
41
- set: (uri) => `${uri}index.html`,
41
+ set: (uri) => `${uri}/index.html`,
42
42
  },
43
43
  },
44
44
  ],
@@ -40,7 +40,7 @@ const manifest = {
40
40
  match: '^(?!.*\\/$)(?![\\s\\S]*\\.[a-zA-Z0-9]+$).*',
41
41
  // eslint-disable-next-line no-template-curly-in-string
42
42
  rewrite: {
43
- set: (uri) => `${uri}index.html`,
43
+ set: (uri) => `${uri}/index.html`,
44
44
  },
45
45
  },
46
46
  ],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edge-functions",
3
3
  "type": "module",
4
- "version": "2.6.0",
4
+ "version": "2.6.1",
5
5
  "description": "Tool to launch and build JavaScript/Frameworks. This tool automates polyfills for Edge Computing and assists in creating Workers, notably for the Azion platform.",
6
6
  "main": "lib/main.js",
7
7
  "bin": {