├── .gitignore ├── .swcrc ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── jest.config.ts ├── package.json ├── pnpm-lock.yaml ├── src ├── apply-commit.ts ├── collab-commit.spec.ts ├── collab-commit.ts ├── rebase.spec.ts └── test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | tsconfig.tsbuildinfo 4 | *.tgz 5 | -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/.swcrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/apply-commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/src/apply-commit.ts -------------------------------------------------------------------------------- /src/collab-commit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/src/collab-commit.spec.ts -------------------------------------------------------------------------------- /src/collab-commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/src/collab-commit.ts -------------------------------------------------------------------------------- /src/rebase.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/src/rebase.spec.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepwisehq/prosemirror-collab-commit/HEAD/tsconfig.json --------------------------------------------------------------------------------