@intlayer/editor 7.0.9-canary.0 → 7.0.9-canary.2
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/README.md +2 -1
- package/package.json +10 -7
package/README.md
CHANGED
|
@@ -171,8 +171,9 @@ Explore our comprehensive documentation to get started with Intlayer and learn h
|
|
|
171
171
|
<details open>
|
|
172
172
|
<summary style="font-size:16px; font-weight:bold;">🌐 Environment</summary>
|
|
173
173
|
<ul>
|
|
174
|
-
<li><a href="https://intlayer.org/doc/environment/nextjs" rel=''>Intlayer with Next.js
|
|
174
|
+
<li><a href="https://intlayer.org/doc/environment/nextjs" rel=''>Intlayer with Next.js 16</a>
|
|
175
175
|
<ul>
|
|
176
|
+
<li><a href="https://intlayer.org/doc/environment/nextjs/15" rel=''>Next.js 15</a></li>
|
|
176
177
|
<li><a href="https://intlayer.org/doc/environment/nextjs/14" rel=''>Next.js 14 (App Router)</a></li>
|
|
177
178
|
<li><a href="https://intlayer.org/doc/environment/nextjs/next-with-Page-Router" rel=''>Next.js Page Router</a></li>
|
|
178
179
|
</ul>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/editor",
|
|
3
|
-
"version": "7.0.9-canary.
|
|
3
|
+
"version": "7.0.9-canary.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Provides the utilities to interface the application with the Intlayer editor and manipulate dictionaries",
|
|
6
6
|
"keywords": [
|
|
@@ -62,19 +62,22 @@
|
|
|
62
62
|
"lint:fix": "biome lint --write .",
|
|
63
63
|
"process-files": "ts-node src/transpiler/processFilesCLI.ts --dir $npm_config_dir --extension $npm_config_extension --no-node-snapshot",
|
|
64
64
|
"prepublish": "cp -f ../../../README.md ./README.md",
|
|
65
|
+
"publish": "bun publish --access public || true",
|
|
66
|
+
"publish:canary": "bun publish --tag canary --access public || true",
|
|
67
|
+
"publish:latest": "bun publish --tag latest --access public || true",
|
|
65
68
|
"test": "vitest run",
|
|
66
69
|
"test:watch": "vitest",
|
|
67
70
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
68
71
|
},
|
|
69
72
|
"devDependencies": {
|
|
70
|
-
"@types/node": "24.10.
|
|
71
|
-
"@utils/ts-config": "
|
|
72
|
-
"@utils/ts-config-types": "
|
|
73
|
-
"@utils/tsdown-config": "
|
|
73
|
+
"@types/node": "24.10.1",
|
|
74
|
+
"@utils/ts-config": "1.0.4",
|
|
75
|
+
"@utils/ts-config-types": "1.0.4",
|
|
76
|
+
"@utils/tsdown-config": "1.0.4",
|
|
74
77
|
"rimraf": "6.1.0",
|
|
75
|
-
"tsdown": "0.16.
|
|
78
|
+
"tsdown": "0.16.4",
|
|
76
79
|
"typescript": "5.9.3",
|
|
77
|
-
"vitest": "4.0.
|
|
80
|
+
"vitest": "4.0.8"
|
|
78
81
|
},
|
|
79
82
|
"engines": {
|
|
80
83
|
"node": ">=14.18"
|