@refinitiv-ui/translate 5.1.4 → 5.1.8

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.1.8](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/translate@5.1.5...@refinitiv-ui/translate@5.1.8) (2021-10-25)
7
+
8
+ **Note:** Version bump only for package @refinitiv-ui/translate
9
+
10
+
11
+
12
+
13
+
14
+ ## [5.1.7](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/translate@5.1.5...@refinitiv-ui/translate@5.1.7) (2021-10-25)
15
+
16
+ **Note:** Version bump only for package @refinitiv-ui/translate
17
+
18
+
19
+
20
+
21
+
22
+ ## [5.1.5](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/translate@5.1.4...@refinitiv-ui/translate@5.1.5) (2021-10-11)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * remove source maps reference from the production build ([655d0bb](https://github.com/Refinitiv/refinitiv-ui/commit/655d0bb57290e5fe1276bf1a99bd7a0190d7a2f8))
28
+
29
+
30
+
31
+
32
+
6
33
  ## [5.1.4](https://git.sami.int.thomsonreuters.com/elf/refinitiv-ui/compare/@refinitiv-ui/translate@5.1.3...@refinitiv-ui/translate@5.1.4) (2021-09-15)
7
34
 
8
35
  **Note:** Version bump only for package @refinitiv-ui/translate
@@ -34,4 +34,3 @@ declare const getLocale: (element: HTMLElement) => string;
34
34
  */
35
35
  declare const translate: (options?: string | DecoratorOptions | undefined) => TranslateFunction;
36
36
  export { translate, TranslatePropertyKey, getLocale, Translate, TranslatePromise, TranslateDirective };
37
- //# sourceMappingURL=translate.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/translate",
3
- "version": "5.1.4",
3
+ "version": "5.1.8",
4
4
  "description": "i18n implementation for Element Framework components",
5
5
  "author": "Refinitiv",
6
6
  "license": "Apache-2.0",
@@ -9,12 +9,13 @@
9
9
  "types": "./lib/translate.d.ts",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git@git.sami.int.thomsonreuters.com:elf/refinitiv-ui.git",
12
+ "url": "git@github.com:Refinitiv/refinitiv-ui.git",
13
13
  "directory": "packages/translate"
14
14
  },
15
15
  "scripts": {
16
- "build": "tsc --sourceMap false",
17
- "build:watch": "tsc --watch --preserveWatchOutput --sourceMap",
16
+ "build": "tsc --sourceMap --declarationMap",
17
+ "build:prod": "tsc",
18
+ "build:watch": "npm run build -- --watch --preserveWatchOutput",
18
19
  "lint": "eslint .",
19
20
  "lint:fix": "eslint . --fix",
20
21
  "start": "npm run build && concurrently \"npm run build:watch\" \"web-dev-server --config ../../server.config.js --app-index __demo__\"",
@@ -23,16 +24,16 @@
23
24
  "test:watch": "npm run test -- --watch"
24
25
  },
25
26
  "dependencies": {
26
- "@refinitiv-ui/core": "^5.0.2",
27
- "@refinitiv-ui/i18n": "^5.1.4",
28
- "@refinitiv-ui/phrasebook": "^5.1.2",
27
+ "@refinitiv-ui/core": "^5.2.0",
28
+ "@refinitiv-ui/i18n": "^5.1.8",
29
+ "@refinitiv-ui/phrasebook": "^5.1.6",
29
30
  "lit-html": "^1.3.0"
30
31
  },
31
32
  "devDependencies": {
32
- "@refinitiv-ui/test-helpers": "^5.0.1"
33
+ "@refinitiv-ui/test-helpers": "^5.0.5"
33
34
  },
34
35
  "publishConfig": {
35
36
  "access": "public"
36
37
  },
37
- "gitHead": "ff2bf7cd08e62f053f70d363f3f68722b7205fda"
38
+ "gitHead": "56c985d7666d307366f71e84bc10111c45ef7f6f"
38
39
  }