Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all dependencies #55

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0

- name: setup node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.6.0

Expand Down
4 changes: 2 additions & 2 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start:test:verbose": "cross-env CYPRESS_SERVER_PORT=7001 start-test start :7001 test:verbose"
},
"devDependencies": {
"@lit-labs/context": "^0.4.0",
"@lit-labs/context": "^0.5.0",
"@prosemirror-adapter/lit": "workspace:*",
"@prosemirror-adapter/react": "workspace:*",
"@prosemirror-adapter/svelte": "workspace:*",
Expand All @@ -24,7 +24,7 @@
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-vue": "^4.1.0",
"cypress": "^13.0.0",
"lit": "^2.7.0",
"lit": "^3.0.0",
"prosemirror-example-setup": "^1.2.1",
"prosemirror-menu": "^1.2.1",
"prosemirror-schema-basic": "^1.2.1",
Expand Down
10 changes: 5 additions & 5 deletions e2e/src/svelte/shim.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/// <reference types="svelte">
/// <reference types="vite/client">
/* Copyright 2021, Prosemirror Adapter by Mirone. */

declare module '*.svelte' {
import type { SvelteComponent } from 'svelte'
const pma_svelte_component: SvelteComponent;
// @ts-ignore
export default pma_svelte_component;

const pma_svelte_component: SvelteComponent
// @ts-expect-error re-export type
export default pma_svelte_component
}
8 changes: 4 additions & 4 deletions e2e/src/vue/shim.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* Copyright 2021, Prosemirror Adapter by Mirone. */

/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/ban-types */

/// <reference types="vite/client" />

declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
import type { DefineComponent } from 'vue'

const component: DefineComponent<{}, {}, any>
export default component
}
4 changes: 2 additions & 2 deletions e2e/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"noEmit": true,
"sourceMap": false
"sourceMap": false,
"noEmit": true
}
}
2 changes: 1 addition & 1 deletion examples/lit/src/vite-env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/// <reference types="vite/client" />
/* Copyright 2021, Prosemirror Adapter by Mirone. */
22 changes: 11 additions & 11 deletions examples/lit/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"compilerOptions": {
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"moduleResolution": "Node",
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./types",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "Node",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": false,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true
},
"include": ["src/**/*.ts"],
"references": [{ "path": "./tsconfig.node.json" }]
"references": [{ "path": "./tsconfig.node.json" }],
"include": ["src/**/*.ts"]
}
17 changes: 8 additions & 9 deletions examples/svelte/src/app.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
/* Copyright 2021, Prosemirror Adapter by Mirone. */
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
}
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
}
}

export {};
export {}
8 changes: 4 additions & 4 deletions examples/svelte/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
"strict": true,
"skipLibCheck": true
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
Expand Down
8 changes: 4 additions & 4 deletions examples/vue/shim.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* Copyright 2021, Prosemirror Adapter by Mirone. */

/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/ban-types */

/// <reference types="vite/client" />

declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
import type { DefineComponent } from 'vue'

const component: DefineComponent<{}, {}, any>
export default component
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"prepare": "husky install"
},
"dependencies": {
"@antfu/eslint-config": "^0.42.0",
"@antfu/eslint-config": "^0.43.0",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@type-config/strict": "^1.2.1",
"@types/rollup-plugin-auto-external": "^2.0.2",
"concurrently": "^8.0.0",
Expand All @@ -32,7 +32,7 @@
"eslint-plugin-react-hooks": "^4.6.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"lint-staged": "^15.0.0",
"prosemirror-keymap": "^1.2.1",
"prosemirror-model": "^1.19.0",
"prosemirror-state": "^1.4.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/lit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
"build": "tsc --emitDeclarationOnly && vite build"
},
"peerDependencies": {
"@lit-labs/context": "^0.4.0",
"lit": "^2.6.1"
"@lit-labs/context": "^0.5.0",
"lit": "^3.0.0"
},
"dependencies": {
"@prosemirror-adapter/core": "workspace:*",
"nanoid": "^5.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@lit-labs/context": "^0.4.0",
"lit": "^2.7.0"
"@lit-labs/context": "^0.5.0",
"lit": "^3.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/lit/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"experimentalDecorators": true,
"rootDir": "src",
"outDir": "lib",
"experimentalDecorators": true
"outDir": "lib"
},
"include": ["src"]
}
4 changes: 2 additions & 2 deletions packages/react/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "react",
"rootDir": "src",
"outDir": "lib",
"jsx": "react"
"outDir": "lib"
},
"include": ["src"]
}
4 changes: 2 additions & 2 deletions packages/vue/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"rootDir": "src",
"outDir": "lib",
"jsx": "preserve"
"outDir": "lib"
},
"include": ["src"]
}
Loading