@gjsify/cli 0.3.13 → 0.3.15

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 (48) hide show
  1. package/lib/actions/build.d.ts +14 -93
  2. package/lib/actions/build.js +182 -154
  3. package/lib/commands/flatpak/build.d.ts +16 -0
  4. package/lib/commands/flatpak/build.js +187 -0
  5. package/lib/commands/flatpak/ci.d.ts +13 -0
  6. package/lib/commands/flatpak/ci.js +133 -0
  7. package/lib/commands/flatpak/deps.d.ts +12 -0
  8. package/lib/commands/flatpak/deps.js +96 -0
  9. package/lib/commands/flatpak/index.d.ts +7 -0
  10. package/lib/commands/flatpak/index.js +23 -0
  11. package/lib/commands/flatpak/init.d.ts +15 -0
  12. package/lib/commands/flatpak/init.js +154 -0
  13. package/lib/commands/flatpak/utils.d.ts +32 -0
  14. package/lib/commands/flatpak/utils.js +63 -0
  15. package/lib/commands/gsettings.d.ts +9 -0
  16. package/lib/commands/gsettings.js +72 -0
  17. package/lib/commands/index.d.ts +2 -0
  18. package/lib/commands/index.js +2 -0
  19. package/lib/commands/install.d.ts +1 -0
  20. package/lib/commands/install.js +66 -11
  21. package/lib/config.js +103 -11
  22. package/lib/index.js +3 -1
  23. package/lib/types/cli-build-options.d.ts +1 -1
  24. package/lib/types/config-data.d.ts +194 -4
  25. package/lib/utils/install-global.d.ts +54 -0
  26. package/lib/utils/install-global.js +153 -0
  27. package/lib/utils/normalize-bundler-options.d.ts +17 -0
  28. package/lib/utils/normalize-bundler-options.js +123 -0
  29. package/lib/utils/resolve-plugin-by-name.d.ts +21 -0
  30. package/lib/utils/resolve-plugin-by-name.js +75 -0
  31. package/package.json +11 -11
  32. package/src/actions/build.ts +406 -352
  33. package/src/commands/flatpak/build.ts +225 -0
  34. package/src/commands/flatpak/ci.ts +173 -0
  35. package/src/commands/flatpak/deps.ts +120 -0
  36. package/src/commands/flatpak/index.ts +53 -0
  37. package/src/commands/flatpak/init.ts +191 -0
  38. package/src/commands/flatpak/utils.ts +76 -0
  39. package/src/commands/gsettings.ts +87 -0
  40. package/src/commands/index.ts +2 -0
  41. package/src/commands/install.ts +90 -11
  42. package/src/config.ts +103 -11
  43. package/src/index.ts +4 -0
  44. package/src/types/cli-build-options.ts +1 -1
  45. package/src/types/config-data.ts +191 -4
  46. package/src/utils/install-global.ts +182 -0
  47. package/src/utils/normalize-bundler-options.ts +129 -0
  48. package/src/utils/resolve-plugin-by-name.ts +106 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/cli",
3
- "version": "0.3.13",
3
+ "version": "0.3.15",
4
4
  "description": "CLI for Gjsify",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -23,19 +23,19 @@
23
23
  "cli"
24
24
  ],
25
25
  "dependencies": {
26
- "@gjsify/create-app": "^0.3.13",
27
- "@gjsify/esbuild-plugin-gjsify": "^0.3.13",
28
- "@gjsify/node-polyfills": "^0.3.13",
29
- "@gjsify/npm-registry": "^0.3.13",
30
- "@gjsify/resolve-npm": "^0.3.13",
31
- "@gjsify/semver": "^0.3.13",
32
- "@gjsify/tar": "^0.3.13",
33
- "@gjsify/web-polyfills": "^0.3.13",
34
- "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.15",
26
+ "@gjsify/create-app": "^0.3.15",
27
+ "@gjsify/node-polyfills": "^0.3.15",
28
+ "@gjsify/npm-registry": "^0.3.15",
29
+ "@gjsify/resolve-npm": "^0.3.15",
30
+ "@gjsify/rolldown-plugin-gjsify": "^0.3.15",
31
+ "@gjsify/rolldown-plugin-pnp": "^0.3.15",
32
+ "@gjsify/semver": "^0.3.15",
33
+ "@gjsify/tar": "^0.3.15",
34
+ "@gjsify/web-polyfills": "^0.3.15",
35
35
  "cosmiconfig": "^9.0.1",
36
- "esbuild": "^0.28.0",
37
36
  "get-tsconfig": "^4.14.0",
38
37
  "pkg-types": "^2.3.1",
38
+ "rolldown": "^1.0.0-rc.18",
39
39
  "yargs": "^18.0.0"
40
40
  },
41
41
  "devDependencies": {