@formatjs/ts-transformer
Advanced tools
Comparing version 2.1.4 to 2.2.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [2.2.0](https://github.com/formatjs/formatjs/compare/@formatjs/ts-transformer@2.1.4...@formatjs/ts-transformer@2.2.0) (2020-07-01) | ||
### Features | ||
* **@formatjs/ts-transformer:** move interpolate-name here ([232d190](https://github.com/formatjs/formatjs/commit/232d190df037b81a88c6b0147a82b586b5ed7fb3)) | ||
## [2.1.4](https://github.com/formatjs/formatjs/compare/@formatjs/ts-transformer@2.1.3...@formatjs/ts-transformer@2.1.4) (2020-06-23) | ||
@@ -8,0 +19,0 @@ |
export * from './transform'; | ||
export * from './types'; | ||
export * from './interpolate-name'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -7,2 +7,3 @@ "use strict"; | ||
__export(require("./transform")); | ||
__export(require("./interpolate-name")); | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const ts = require("typescript"); | ||
const interpolate_name_1 = require("@formatjs/intl-utils/dist/interpolate-name"); | ||
const interpolate_name_1 = require("./interpolate-name"); | ||
const MESSAGE_DESC_KEYS = [ | ||
@@ -6,0 +6,0 @@ 'id', |
{ | ||
"name": "@formatjs/ts-transformer", | ||
"version": "2.1.4", | ||
"version": "2.2.0", | ||
"description": "TS Compiler transformer for formatjs", | ||
@@ -23,3 +23,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@formatjs/intl-utils": "^3.4.1", | ||
"@formatjs/intl-utils": "^3.5.0", | ||
"typescript": "3.8" | ||
@@ -38,3 +38,3 @@ }, | ||
}, | ||
"gitHead": "aa6995c4f8c9f79e13e5ca551057f6e1f3a72c22" | ||
"gitHead": "76e649f2f673c1344fe29ccf739d4b4ebd573ead" | ||
} |
export * from './transform'; | ||
export * from './types'; | ||
export * from './interpolate-name'; |
import * as ts from 'typescript'; | ||
import {MessageDescriptor} from './types'; | ||
import {interpolateName} from '@formatjs/intl-utils/dist/interpolate-name'; | ||
import {interpolateName} from './interpolate-name'; | ||
@@ -5,0 +5,0 @@ export type Extractor = (filePath: string, msgs: MessageDescriptor[]) => void; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
180050
45
1508
Updated@formatjs/intl-utils@^3.5.0