gt-node 0.6.12 → 0.6.14

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
@@ -1,5 +1,19 @@
1
1
  # gt-node
2
2
 
3
+ ## 0.6.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`cb2e106`](https://github.com/generaltranslation/gt/commit/cb2e1066f975dce8e90b166c51f763a3778c3861), [`b907d87`](https://github.com/generaltranslation/gt/commit/b907d8799670e9e22355b5664da4c9f6f323b8f4), [`bf0386b`](https://github.com/generaltranslation/gt/commit/bf0386b38b8a9342619eb2f8b4e5f043dcba4d8f)]:
8
+ - gt-i18n@0.8.14
9
+
10
+ ## 0.6.13
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`c7f8dbe`](https://github.com/generaltranslation/gt/commit/c7f8dbe7841b772358e4e0391fd7782e223cbec8), [`3af2461`](https://github.com/generaltranslation/gt/commit/3af2461b5456a87883431561712615fdb4f8c89e), [`6f56c52`](https://github.com/generaltranslation/gt/commit/6f56c52d2d6687b614b3eee7226f886c8eac9a96), [`a5b18eb`](https://github.com/generaltranslation/gt/commit/a5b18eb39f6f74e77df78b58f11f065cc7dbdbda), [`4976fc6`](https://github.com/generaltranslation/gt/commit/4976fc682c84fa95b7deace431b2235ca1fccf24)]:
15
+ - gt-i18n@0.8.13
16
+
3
17
  ## 0.6.12
4
18
 
5
19
  ### Patch Changes
package/README.md CHANGED
@@ -18,7 +18,7 @@ pnpm add gt-node
18
18
  ## Usage
19
19
 
20
20
  ```typescript
21
- import { /* utilities */ } from 'gt-node';
21
+ import {} from /* utilities */ 'gt-node';
22
22
  ```
23
23
 
24
24
  This package provides Node.js-specific utilities built on top of the General Translation toolkit. It includes all functionality from:
@@ -38,10 +38,10 @@ pnpm build
38
38
  # Run tests
39
39
  pnpm test
40
40
 
41
- # Lint code
41
+ # Lint code from the repository root
42
42
  pnpm lint
43
43
  ```
44
44
 
45
45
  ## License
46
46
 
47
- FSL-1.1-ALv2
47
+ FSL-1.1-ALv2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gt-node",
3
- "version": "0.6.12",
3
+ "version": "0.6.14",
4
4
  "description": "Node.js utilities for General Translation",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -44,7 +44,7 @@
44
44
  "definition": "dist/index.d.cts"
45
45
  },
46
46
  "dependencies": {
47
- "gt-i18n": "0.8.12",
47
+ "gt-i18n": "0.8.14",
48
48
  "generaltranslation": "8.2.11"
49
49
  },
50
50
  "exports": {
@@ -104,8 +104,6 @@
104
104
  "build:release": "pnpm run build:clean",
105
105
  "build:clean": "sh ../../scripts/clean.sh && pnpm run build",
106
106
  "build": "tsdown",
107
- "lint": "eslint \"src/**/*.{js,ts}\" \"./**/__tests__/**/*.{js,ts}\"",
108
- "lint:fix": "eslint \"src/**/*.{js,ts}\" \"./**/__tests__/**/*.{js,ts}\" --fix",
109
107
  "test": "vitest run --config=./vitest.config.ts",
110
108
  "test:watch": "vitest --config=./vitest.config.ts",
111
109
  "release": "pnpm run build:clean && pnpm publish",