edge-functions 2.6.2-stage.2 → 2.6.2-stage.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ### [2.6.2-stage.3](https://github.com/aziontech/vulcan/compare/v2.6.2-stage.2...v2.6.2-stage.3) (2024-04-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * emscripten <init> reference ([9aa71e8](https://github.com/aziontech/vulcan/commit/9aa71e8bf46b188a2cccba086cb9ac8b0c759e08))
7
+
1
8
  ### [2.6.2-stage.2](https://github.com/aziontech/vulcan/compare/v2.6.2-stage.1...v2.6.2-stage.2) (2024-04-19)
2
9
 
3
10
 
@@ -132,9 +132,9 @@ const TemplatesInitializer = {
132
132
  const cloneCommands = generateCloneCommand(projectName, subdirectory);
133
133
  await exec(cloneCommands, 'RustWasm', false, false);
134
134
  },
135
- 'C++ (Emscripten)': async (projectName, subdirectory) => {
135
+ Emscripten: async (projectName, subdirectory) => {
136
136
  const cloneCommands = generateCloneCommand(projectName, subdirectory);
137
- await exec(cloneCommands, 'C++ (Emscripten)', false, false);
137
+ await exec(cloneCommands, 'Emscripten', false, false);
138
138
  },
139
139
  Angular: async (projectName, subdirectory) => {
140
140
  const cloneCommands = generateCloneCommand(projectName, subdirectory);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edge-functions",
3
3
  "type": "module",
4
- "version": "2.6.2-stage.2",
4
+ "version": "2.6.2-stage.3",
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": {