@vocab/types
Advanced tools
Comparing version 0.0.5 to 0.0.6
# @vocab/types | ||
## 0.0.6 | ||
### Patch Changes | ||
- [`80a46c0`](https://github.com/seek-oss/vocab/commit/80a46c01a55408675f5822c3618519f80136c3ab) [#27](https://github.com/seek-oss/vocab/pull/27) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Add `ignore` config for ignoring files/folders from cli scripts | ||
## 0.0.5 | ||
@@ -4,0 +10,0 @@ |
@@ -26,2 +26,6 @@ import type { IntlMessageFormat } from 'intl-messageformat'; | ||
translationsDirname?: string; | ||
/** | ||
* An array of glob paths to ignore from compilation and validation | ||
*/ | ||
ignore?: Array<string>; | ||
} | ||
@@ -28,0 +32,0 @@ export interface TranslationData { |
{ | ||
"name": "@vocab/types", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"main": "dist/vocab-types.cjs.js", | ||
@@ -5,0 +5,0 @@ "module": "dist/vocab-types.esm.js", |
@@ -56,9 +56,9 @@ # Vocab | ||
```tsx | ||
import { TranslationsProvider } from '@vocab/react'; | ||
import { VocabProvider } from '@vocab/react'; | ||
function App({ children }) { | ||
return ( | ||
<TranslationsProvider language={language}> | ||
<VocabProvider language={language}> | ||
{children} | ||
</TranslationsProvider> | ||
</VocabProvider> | ||
); | ||
@@ -65,0 +65,0 @@ } |
@@ -41,2 +41,6 @@ import type { IntlMessageFormat } from 'intl-messageformat'; | ||
translationsDirname?: string; | ||
/** | ||
* An array of glob paths to ignore from compilation and validation | ||
*/ | ||
ignore?: Array<string>; | ||
} | ||
@@ -43,0 +47,0 @@ export interface TranslationData { |
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
11099
112