create-outsystems-astro 0.7.2 → 0.8.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.
Files changed (30) hide show
  1. package/README.md +1 -0
  2. package/bin/cli.js +10 -1
  3. package/package.json +1 -1
  4. package/template/.github/workflows/test.yml +13 -13
  5. package/template/.prettierrc +1 -1
  6. package/template/AGENTS.md +74 -2
  7. package/template/astro.config.mjs +5 -0
  8. package/template/bun.lock +640 -190
  9. package/template/deno.json +1 -17
  10. package/template/deno.lock +889 -461
  11. package/template/eslint.config.mjs +5 -0
  12. package/template/package-lock.json +7593 -3817
  13. package/template/package.json +44 -84
  14. package/template/pnpm-lock.yaml +1602 -733
  15. package/template/src/framework/solid/Demo.tsx +85 -0
  16. package/template/src/framework/solid/Store.tsx +31 -0
  17. package/template/src/images/solid.png +0 -0
  18. package/template/src/pages/multi/store.astro +3 -1
  19. package/template/src/pages/solid/solid-demo.astro +65 -0
  20. package/template/src/stores/framework.ts +1 -0
  21. package/template/test/e2e/solid/solid-demo.spec.ts +42 -0
  22. package/template/test/integration/solid/Demo.test.tsx +90 -0
  23. package/template/vitest.config.ts +12 -0
  24. package/template/yarn.lock +945 -392
  25. /package/template/patches/{@angular+build+21.2.2.patch → @angular+build+21.2.5.patch} +0 -0
  26. /package/template/test/e2e/angular/{angular-counter.spec.ts → angular-demo.spec.ts} +0 -0
  27. /package/template/test/e2e/preact/{preact-counter.spec.ts → preact-demo.spec.ts} +0 -0
  28. /package/template/test/e2e/react/{react-counter.spec.ts → react-demo.spec.ts} +0 -0
  29. /package/template/test/e2e/svelte/{svelte-counter.spec.ts → svelte-demo.spec.ts} +0 -0
  30. /package/template/test/e2e/vue/{vue-counter.spec.ts → vue-demo.spec.ts} +0 -0
@@ -12,6 +12,7 @@ import perfectionist from "eslint-plugin-perfectionist";
12
12
  import playwright from "eslint-plugin-playwright";
13
13
  import pluginReact from "eslint-plugin-react";
14
14
  import pluginReactHooks from "eslint-plugin-react-hooks";
15
+ import solid from "eslint-plugin-solid";
15
16
  import svelte from "eslint-plugin-svelte";
16
17
  import testingLibrary from "eslint-plugin-testing-library";
17
18
  import pluginVue from "eslint-plugin-vue";
@@ -212,4 +213,8 @@ export default [
212
213
  },
213
214
  },
214
215
  },
216
+ {
217
+ ...solid.configs["flat/recommended"],
218
+ files: ["src/framework/solid/**/*.{js,ts,jsx,tsx}"],
219
+ },
215
220
  ];