i18nsmith 0.3.1 → 0.3.2

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 (3) hide show
  1. package/dist/index.js +317947 -688
  2. package/package.json +5 -5
  3. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i18nsmith",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "CLI for i18nsmith",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,10 +21,6 @@
21
21
  "test": "vitest run"
22
22
  },
23
23
  "dependencies": {
24
- "@i18nsmith/core": "workspace:*",
25
- "@i18nsmith/transformer": "workspace:*",
26
- "@i18nsmith/translation": "workspace:*",
27
- "@i18nsmith/translator-mock": "workspace:*",
28
24
  "chalk": "^5.0.0",
29
25
  "commander": "^11.0.0",
30
26
  "diff": "^8.0.2",
@@ -35,6 +31,10 @@
35
31
  "ts-morph": "^21.0.0"
36
32
  },
37
33
  "devDependencies": {
34
+ "@i18nsmith/core": "workspace:*",
35
+ "@i18nsmith/transformer": "workspace:*",
36
+ "@i18nsmith/translation": "workspace:*",
37
+ "@i18nsmith/translator-mock": "workspace:*",
38
38
  "esbuild": "^0.25.0"
39
39
  }
40
40
  }
package/src/index.ts CHANGED
@@ -22,7 +22,7 @@ export const program = new Command();
22
22
  program
23
23
  .name('i18nsmith')
24
24
  .description('Universal Automated i18n Library')
25
- .version('0.1.0');
25
+ .version('0.3.2');
26
26
 
27
27
  registerInit(program);
28
28
  registerScaffoldAdapter(program);