rtgl 0.0.11-rc11 → 0.0.11-rc12

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 (2) hide show
  1. package/cli.js +3 -0
  2. package/package.json +3 -3
package/cli.js CHANGED
@@ -55,6 +55,7 @@ feCommand
55
55
  .command("build")
56
56
  .description("Build UI components")
57
57
  .option("-o, --outfile <path>", "The output file")
58
+ .option("-d, --development", "Development mode (no minification, no source maps)")
58
59
  .addHelpText(
59
60
  "after",
60
61
  `
@@ -63,6 +64,8 @@ Examples:
63
64
  $ rettangoli fe build
64
65
  $ rettangoli fe build --outfile ./dist/bundle.js
65
66
  $ rettangoli fe build -o ./public/js/main.js
67
+ $ rettangoli fe build --development
68
+ $ rettangoli fe build -d -o ./dist/dev.js
66
69
  `,
67
70
  )
68
71
  .action((options) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rtgl",
3
- "version": "0.0.11-rc11",
3
+ "version": "0.0.11-rc12",
4
4
  "description": "CLI tool for Rettangoli - A frontend framework and development toolkit",
5
5
  "type": "module",
6
6
  "bin": {
@@ -47,9 +47,9 @@
47
47
  "dependencies": {
48
48
  "commander": "^14.0.0",
49
49
  "js-yaml": "^4.1.0",
50
- "@rettangoli/fe": "0.0.7-rc11",
50
+ "@rettangoli/fe": "0.0.7-rc12",
51
51
  "@rettangoli/sites": "0.1.1",
52
52
  "@rettangoli/vt": "0.0.2-rc3",
53
- "@rettangoli/ui": "0.1.2-rc14"
53
+ "@rettangoli/ui": "0.1.2-rc22"
54
54
  }
55
55
  }