@generaltranslation/react-core 0.0.1-alpha.5 → 1.0.0

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/CHANGELOG.md +7 -0
  2. package/package.json +5 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @generaltranslation/react-core
2
+
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#746](https://github.com/generaltranslation/gt/pull/746) [`83a5b26`](https://github.com/generaltranslation/gt/commit/83a5b26cc70f9a7378bbcafbf6c035462598fc8a) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - refactor: modularize gt-react package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@generaltranslation/react-core",
3
- "version": "0.0.1-alpha.5",
3
+ "version": "1.0.0",
4
4
  "description": "A pure React library for internationalization",
5
5
  "main": "./dist/index.cjs.min.cjs",
6
6
  "module": "./dist/index.esm.min.mjs",
@@ -13,8 +13,8 @@
13
13
  "react": ">=16.8.0"
14
14
  },
15
15
  "dependencies": {
16
- "@generaltranslation/supported-locales": "2.0.15",
17
- "generaltranslation": "7.6.5"
16
+ "@generaltranslation/supported-locales": "2.0.16",
17
+ "generaltranslation": "7.7.0"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
@@ -108,8 +108,8 @@
108
108
  "release:alpha": "pnpm run build:clean && pnpm publish --tag alpha",
109
109
  "release:beta": "pnpm run build:clean && pnpm publish --tag beta",
110
110
  "release:latest": "pnpm run build:clean && pnpm publish --tag latest",
111
- "lint": "eslint \"src/**/*.{js,ts,tsx}\" \"__tests__/**/*.{js,ts,tsx}\"",
112
- "lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" \"__tests__/**/*.{js,ts,tsx}\" --fix",
111
+ "lint": "eslint \"src/**/*.{js,ts,tsx}\" \"**/__tests__/**/*.{js,ts,tsx}\"",
112
+ "lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" \"**/__tests__/**/*.{js,ts,tsx}\" --fix",
113
113
  "test": "vitest run",
114
114
  "test:watch": "vitest"
115
115
  }