@opensaas/stack-tiptap 0.26.0 → 0.27.1
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +8 -0
- package/package.json +8 -7
- package/src/css.d.ts +1 -0
- package/tsconfig.json +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
> @opensaas/stack-tiptap@0.
|
|
2
|
+
> @opensaas/stack-tiptap@0.27.1 build /home/runner/work/stack/stack/packages/tiptap
|
|
3
3
|
> tsc && npm run copy:css
|
|
4
4
|
|
|
5
5
|
npm warn Unknown env config "verify-deps-before-run". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
|
|
6
6
|
npm warn Unknown env config "npm-globalconfig". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
|
|
7
7
|
npm warn Unknown env config "_jsr-registry". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
|
|
8
8
|
|
|
9
|
-
> @opensaas/stack-tiptap@0.
|
|
9
|
+
> @opensaas/stack-tiptap@0.27.1 copy:css
|
|
10
10
|
> mkdir -p dist/styles && cp src/styles/tiptap.css dist/styles/
|
|
11
11
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @opensaas/stack-tiptap
|
|
2
2
|
|
|
3
|
+
## 0.27.1
|
|
4
|
+
|
|
5
|
+
## 0.27.0
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#664](https://github.com/OpenSaasAU/stack/pull/664) [`37838ef`](https://github.com/OpenSaasAU/stack/commit/37838efbf726b27baa5e1da448d44223c6953e3f) Thanks [@borisno2](https://github.com/borisno2)! - Upgrade TypeScript to v7. `typescript` now resolves to the `@typescript/typescript6` compatibility shim (keeping the classic compiler API available for `typescript-eslint` and Next.js's build-time type-checking, neither of which support TS 7's restructured package yet), while `@typescript-eslint/eslint-plugin` is bumped to 8.63.0 to match. The CLI's Node-build compiler step (ADR-0011) now shells out to `tsc` instead of the removed synchronous `Program` API, using its own pinned native TS 7 binary via a new `@typescript/native` dependency.
|
|
10
|
+
|
|
3
11
|
## 0.26.0
|
|
4
12
|
|
|
5
13
|
## 0.25.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensaas/stack-tiptap",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.1",
|
|
4
4
|
"description": "Tiptap rich text editor integration for OpenSaas Stack",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -42,21 +42,22 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@tiptap/extension-placeholder": "^3.25.0",
|
|
45
|
-
"@tiptap/pm": "^3.
|
|
45
|
+
"@tiptap/pm": "^3.27.1",
|
|
46
46
|
"@tiptap/react": "^3.20.4",
|
|
47
47
|
"@tiptap/starter-kit": "^3.20.1",
|
|
48
48
|
"zod": "^4.3.6"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@types/node": "^
|
|
51
|
+
"@types/node": "^26.1.1",
|
|
52
52
|
"@types/react": "^19.2.14",
|
|
53
53
|
"@types/react-dom": "^19.2.3",
|
|
54
|
-
"
|
|
54
|
+
"@typescript/native": "npm:typescript@^7.0.2",
|
|
55
|
+
"next": "^16.2.10",
|
|
55
56
|
"react": "^19.2.4",
|
|
56
57
|
"react-dom": "^19.2.4",
|
|
57
|
-
"typescript": "
|
|
58
|
-
"@opensaas/stack-core": "0.
|
|
59
|
-
"@opensaas/stack-ui": "0.
|
|
58
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
59
|
+
"@opensaas/stack-core": "0.27.1",
|
|
60
|
+
"@opensaas/stack-ui": "0.27.1"
|
|
60
61
|
},
|
|
61
62
|
"scripts": {
|
|
62
63
|
"build": "tsc && npm run copy:css",
|
package/src/css.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
declare module '*.css'
|