rtgl 1.1.4 → 1.4.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 (2) hide show
  1. package/cli.js +3 -0
  2. package/package.json +3 -3
package/cli.js CHANGED
@@ -171,6 +171,7 @@ Examples:
171
171
 
172
172
  // Pass dirs, setup, and outfile from config
173
173
  options.dirs = config.fe.dirs;
174
+ options.i18n = config.fe.i18n || null;
174
175
  // Use setup-path if provided, otherwise use config setup
175
176
  options.setup = options.setupPath || config.fe.setup || "setup.js";
176
177
 
@@ -214,6 +215,7 @@ Examples:
214
215
  }
215
216
 
216
217
  options.dirs = config.fe.dirs;
218
+ options.i18n = config.fe.i18n || null;
217
219
  check(options);
218
220
  });
219
221
 
@@ -280,6 +282,7 @@ Examples:
280
282
 
281
283
  // Pass dirs, setup, and outfile from config
282
284
  options.dirs = config.fe.dirs;
285
+ options.i18n = config.fe.i18n || null;
283
286
  // Use setup-path if provided, otherwise use config setup
284
287
  options.setup = options.setupPath || config.fe.setup || "setup.js";
285
288
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rtgl",
3
- "version": "1.1.4",
3
+ "version": "1.4.0",
4
4
  "description": "CLI tool for Rettangoli - A frontend framework and development toolkit",
5
5
  "type": "module",
6
6
  "bin": {
@@ -49,8 +49,8 @@
49
49
  "js-yaml": "^4.1.0",
50
50
  "@rettangoli/check": "0.1.2",
51
51
  "@rettangoli/be": "1.0.2",
52
- "@rettangoli/fe": "1.1.3",
53
- "@rettangoli/sites": "1.0.3",
52
+ "@rettangoli/fe": "1.2.0",
53
+ "@rettangoli/sites": "1.2.0",
54
54
  "@rettangoli/vt": "1.0.5",
55
55
  "@rettangoli/ui": "1.4.2"
56
56
  }