create-outsystems-astro 0.8.2 → 0.9.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.
- package/README.md +1 -1
- package/bin/cli.js +25 -0
- package/package.json +1 -1
- package/template/.github/workflows/bun-test.yml +127 -0
- package/template/.github/workflows/deno-test.yml +127 -0
- package/template/.github/workflows/{test.yml → npm-test.yml} +7 -7
- package/template/.github/workflows/pnpm-test.yml +158 -0
- package/template/.github/workflows/yarn-test.yml +145 -0
- package/template/astro.config.mjs +4 -3
- package/template/bun.lock +516 -864
- package/template/deno.json +1 -9
- package/template/deno.lock +1253 -1406
- package/template/package-lock.json +7225 -9312
- package/template/package.json +63 -82
- package/template/patches/@analogjs+astro-angular+2.5.1.patch +26 -0
- package/template/pnpm-lock.yaml +2557 -2572
- package/template/pnpm-workspace.yaml +6 -6
- package/template/yarn.lock +2737 -2961
- package/template/patches/@analogjs+astro-angular+2.3.1.patch +0 -13
- package/template/patches-deno/playwright+1.58.2.patch +0 -26
- /package/template/patches/{@angular+build+21.2.5.patch → @angular+build+21.2.11.patch} +0 -0
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
diff --git a/node_modules/@analogjs/astro-angular/src/index.js b/node_modules/@analogjs/astro-angular/src/index.js
|
|
2
|
-
index 905312a..84b45d8 100644
|
|
3
|
-
--- a/node_modules/@analogjs/astro-angular/src/index.js
|
|
4
|
-
+++ b/node_modules/@analogjs/astro-angular/src/index.js
|
|
5
|
-
@@ -10,7 +10,7 @@ function getRenderer() {
|
|
6
|
-
function getViteConfiguration(vite) {
|
|
7
|
-
return {
|
|
8
|
-
esbuild: {
|
|
9
|
-
- jsxDev: true,
|
|
10
|
-
+ jsxDev: false,
|
|
11
|
-
},
|
|
12
|
-
optimizeDeps: {
|
|
13
|
-
include: [
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
diff --git a/node_modules/playwright/lib/transform/esmLoader.js b/node_modules/playwright/lib/transform/esmLoader.js
|
|
2
|
-
index 46147e9..07e894a 100644
|
|
3
|
-
--- a/node_modules/playwright/lib/transform/esmLoader.js
|
|
4
|
-
+++ b/node_modules/playwright/lib/transform/esmLoader.js
|
|
5
|
-
@@ -27,7 +27,7 @@ var import_compilationCache = require("./compilationCache");
|
|
6
|
-
var import_portTransport = require("./portTransport");
|
|
7
|
-
var import_transform = require("./transform");
|
|
8
|
-
var import_util = require("../util");
|
|
9
|
-
-const esmPreflightExtension = ".esm.preflight";
|
|
10
|
-
+const esmPreflightExtension = "";
|
|
11
|
-
async function resolve(originalSpecifier, context, defaultResolve) {
|
|
12
|
-
let specifier = originalSpecifier.replace(esmPreflightExtension, "");
|
|
13
|
-
if (context.parentURL && context.parentURL.startsWith("file://")) {
|
|
14
|
-
diff --git a/node_modules/playwright/lib/transform/transform.js b/node_modules/playwright/lib/transform/transform.js
|
|
15
|
-
index 715bcce..a15c762 100644
|
|
16
|
-
--- a/node_modules/playwright/lib/transform/transform.js
|
|
17
|
-
+++ b/node_modules/playwright/lib/transform/transform.js
|
|
18
|
-
@@ -219,7 +219,7 @@ async function requireOrImport(file) {
|
|
19
|
-
if (isModule) {
|
|
20
|
-
const fileName = import_url.default.pathToFileURL(file);
|
|
21
|
-
const esmImport = () => eval(`import(${JSON.stringify(fileName)})`);
|
|
22
|
-
- await eval(`import(${JSON.stringify(fileName + ".esm.preflight")})`).finally(nextTask);
|
|
23
|
-
+ await eval(`import(${JSON.stringify(fileName)})`).finally(nextTask);
|
|
24
|
-
return await esmImport().finally(nextTask);
|
|
25
|
-
}
|
|
26
|
-
const result = require(file);
|
|
File without changes
|