xlf-translate 2.0.6 → 2.0.7-develop.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 (2) hide show
  1. package/README.md +2 -7
  2. package/package.json +11 -12
package/README.md CHANGED
@@ -1,11 +1,8 @@
1
- [![Build Status](https://travis-ci.org/tsvetomir/xlf-translate.svg?branch=master)](https://travis-ci.org/tsvetomir/xlf-translate)
2
1
  [![npm version](https://badge.fury.io/js/xlf-translate.svg)](https://badge.fury.io/js/xlf-translate)
3
2
 
4
3
  # xlf-translate
5
4
 
6
- Populates translations in XLIFF (.xlf) message files. Specifically developed for [Angular 2 i18n](https://angular.io/docs/ts/latest/cookbook/i18n.html) - enabled apps, but might work for others as well.
7
-
8
- **Check out my blog post on [Making Sense of Angular Internationalization (i18n)](https://medium.com/@t_tsonev/making-sense-of-angular-internationalization-i18n-e7b26fb9c587)**
5
+ Populates translations in XLIFF (.xlf) message files. Specifically developed for [Angular i18n](https://angular.dev/guide/i18n) - enabled apps, but might work for others as well.
9
6
 
10
7
  ## Description
11
8
 
@@ -62,6 +59,4 @@ You can also force overwriting all translations, regardless if empty or not:
62
59
  ## See Also
63
60
 
64
61
  * [Sample usage in an i18n Angular app](https://github.com/tsvetomir/angular-cli-i18n-sample)
65
- * [Angular 2 - Internationalization (i18n)](https://angular.io/docs/ts/latest/cookbook/i18n.html)
66
- * [Deploying an i18n Angular app with angular-cli](https://medium.com/@feloy/deploying-an-i18n-angular-app-with-angular-cli-fc788f17e358#.2qlq8lfad)
67
-
62
+ * [Angular - Internationalization (i18n)](https://angular.dev/guide/i18n)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xlf-translate",
3
- "version": "2.0.6",
3
+ "version": "2.0.7-develop.2",
4
4
  "description": "Populate XLIFF (.XLF) files with existing translations",
5
5
  "main": "src/translate.js",
6
6
  "files": [
@@ -12,26 +12,25 @@
12
12
  "test": "vitest --run"
13
13
  },
14
14
  "bin": {
15
- "xlf-translate": "./bin/xlf-translate"
15
+ "xlf-translate": "bin/xlf-translate"
16
16
  },
17
17
  "author": "Tsvetomir Tsonev",
18
18
  "license": "BSD-3-Clause",
19
19
  "dependencies": {
20
20
  "argparse": "^2.0.1",
21
- "cheerio": "^1.0.0",
22
- "js-yaml": "^4.1.0",
23
- "jsonpath": "^1.0.0"
21
+ "cheerio": "^1.2.0",
22
+ "js-yaml": "^4.1.1",
23
+ "jsonpath": "^1.2.1"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://github.com/tsvetomir/xlf-translate.git"
27
+ "url": "git+https://github.com/tsvetomir/xlf-translate.git"
28
28
  },
29
29
  "devDependencies": {
30
- "@eslint/js": "^9.17.0",
31
- "@vitest/eslint-plugin": "^1.1.22",
32
- "eslint": "^9.17.0",
33
- "globals": "^15.14.0",
34
- "semantic-release": "^24.2.0",
35
- "vitest": "^2.1.8"
30
+ "@eslint/js": "^10.0.1",
31
+ "@vitest/eslint-plugin": "^1.6.9",
32
+ "eslint": "^10.0.0",
33
+ "globals": "^17.3.0",
34
+ "vitest": "^4.0.18"
36
35
  }
37
36
  }