Run tests without compilation. optimize testHelper output.
This commit is contained in:
		
							parent
							
								
									ad0d915794
								
							
						
					
					
						commit
						b2b1863624
					
				
							
								
								
									
										760
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										760
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										44
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										44
									
								
								package.json
									
									
									
									
									
								
							@ -13,28 +13,38 @@
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  "scripts": {
 | 
					  "scripts": {
 | 
				
			||||||
    "clean": "rm -rf dist docs",
 | 
					    "clean": "rm -rf dist docs",
 | 
				
			||||||
    "test": "npm run dist && NODE_ENV=development node ./dist/tests.cjs --repetition-time 50",
 | 
					    "test": "NODE_ENV=development node ./tests/index.js --repetition-time 50",
 | 
				
			||||||
    "test-extensive": "npm run lint && npm run dist && node ./dist/tests.cjs --production --repetition-time 10000",
 | 
					    "test-extensive": "node ./tests/index.js --production --repetition-time 10000",
 | 
				
			||||||
    "dist": "npm run clean && rollup -c && tsc",
 | 
					    "dist": "npm run clean && rollup -c && tsc",
 | 
				
			||||||
    "watch": "rollup -wc",
 | 
					    "watch": "rollup -wc",
 | 
				
			||||||
    "lint": "markdownlint README.md && standard && tsc",
 | 
					    "lint": "markdownlint README.md && standard && tsc",
 | 
				
			||||||
    "docs": "rm -rf docs; jsdoc --configure ./.jsdoc.json --verbose --readme ./README.md --package ./package.json || true",
 | 
					    "docs": "rm -rf docs; jsdoc --configure ./.jsdoc.json --verbose --readme ./README.md --package ./package.json || true",
 | 
				
			||||||
    "serve-docs": "npm run docs && http-server ./docs/",
 | 
					    "serve-docs": "npm run docs && 0serve ./docs/",
 | 
				
			||||||
    "preversion": "npm run lint && PRODUCTION=1 npm run dist && npm run docs && node ./dist/tests.cjs --repetition-time 1000 && test -e dist/src/index.d.ts && test -e dist/yjs.cjs && test -e dist/yjs.cjs",
 | 
					    "preversion": "npm run lint && PRODUCTION=1 npm run dist && npm run docs && node ./tests/index.js --repetition-time 1000 && test -e dist/src/index.d.ts && test -e dist/yjs.cjs && test -e dist/yjs.cjs",
 | 
				
			||||||
    "debug": "concurrently 'http-server -o test.html' 'npm run watch'",
 | 
					    "debug": "npm run gentesthtml && 0serve -o test.html",
 | 
				
			||||||
    "trace-deopt": "clear && rollup -c  && node --trace-deopt dist/test.cjs",
 | 
					    "trace-deopt": "clear && node --trace-deopt ./tests/index.js",
 | 
				
			||||||
    "trace-opt": "clear && rollup -c  && node --trace-opt dist/test.cjs"
 | 
					    "trace-opt": "clear && node --trace-opt ./tests/index.js",
 | 
				
			||||||
 | 
					    "gentesthtml": "0gentesthtml --script ./tests/index.js > test.html"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "exports": {
 | 
					  "exports": {
 | 
				
			||||||
    ".": {
 | 
					    ".": {
 | 
				
			||||||
      "types": "./dist/src/index.d.ts",
 | 
					      "types": "./dist/src/index.d.ts",
 | 
				
			||||||
      "module": "./dist/yjs.mjs",
 | 
					      "module": "./dist/yjs.mjs",
 | 
				
			||||||
      "import": "./dist/yjs.mjs",
 | 
					      "require": "./dist/yjs.cjs",
 | 
				
			||||||
      "require": "./dist/yjs.cjs"
 | 
					      "import": "./src/index.js"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "./internals": {
 | 
				
			||||||
 | 
					      "types": "./dist/src/internals.d.ts",
 | 
				
			||||||
 | 
					      "module": "./dist/internals.mjs",
 | 
				
			||||||
 | 
					      "require": "./dist/internals.cjs",
 | 
				
			||||||
 | 
					      "import": "./src/internals.js"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "./testHelper": {
 | 
				
			||||||
 | 
					      "types": "./dist/testHelper.d.ts",
 | 
				
			||||||
 | 
					      "module": "./dist/testHelper.mjs",
 | 
				
			||||||
 | 
					      "require": "./dist/testHelper.cjs",
 | 
				
			||||||
 | 
					      "import": "./tests/testHelper.js"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "./src/index.js": "./src/index.js",
 | 
					 | 
				
			||||||
    "./tests/testHelper.js": "./tests/testHelper.js",
 | 
					 | 
				
			||||||
    "./testHelper": "./dist/testHelper.mjs",
 | 
					 | 
				
			||||||
    "./package.json": "./package.json"
 | 
					    "./package.json": "./package.json"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "files": [
 | 
					  "files": [
 | 
				
			||||||
@ -76,21 +86,19 @@
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  "homepage": "https://docs.yjs.dev",
 | 
					  "homepage": "https://docs.yjs.dev",
 | 
				
			||||||
  "dependencies": {
 | 
					  "dependencies": {
 | 
				
			||||||
    "lib0": "^0.2.99"
 | 
					    "lib0": "^0.2.101",
 | 
				
			||||||
 | 
					    "y-protocols": "^1.0.5"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "devDependencies": {
 | 
					  "devDependencies": {
 | 
				
			||||||
    "@rollup/plugin-commonjs": "^24.0.1",
 | 
					 | 
				
			||||||
    "@rollup/plugin-node-resolve": "^15.0.1",
 | 
					 | 
				
			||||||
    "@types/node": "^18.15.5",
 | 
					    "@types/node": "^18.15.5",
 | 
				
			||||||
    "concurrently": "^3.6.1",
 | 
					    "concurrently": "^3.6.1",
 | 
				
			||||||
    "http-server": "^0.12.3",
 | 
					 | 
				
			||||||
    "jsdoc": "^3.6.7",
 | 
					    "jsdoc": "^3.6.7",
 | 
				
			||||||
    "markdownlint-cli": "^0.41.0",
 | 
					    "markdownlint-cli": "^0.41.0",
 | 
				
			||||||
    "rollup": "^3.20.0",
 | 
					    "rollup": "^4.37.0",
 | 
				
			||||||
    "standard": "^16.0.4",
 | 
					    "standard": "^16.0.4",
 | 
				
			||||||
    "tui-jsdoc-template": "^1.2.2",
 | 
					    "tui-jsdoc-template": "^1.2.2",
 | 
				
			||||||
    "typescript": "^4.9.5",
 | 
					    "typescript": "^4.9.5",
 | 
				
			||||||
    "y-protocols": "^1.0.5"
 | 
					    "yjs": "."
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "engines": {
 | 
					  "engines": {
 | 
				
			||||||
    "npm": ">=8.0.0",
 | 
					    "npm": ">=8.0.0",
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										120
									
								
								rollup.config.js
									
									
									
									
									
								
							
							
						
						
									
										120
									
								
								rollup.config.js
									
									
									
									
									
								
							@ -1,106 +1,44 @@
 | 
				
			|||||||
import nodeResolve from '@rollup/plugin-node-resolve'
 | 
					const resolver = {
 | 
				
			||||||
import commonjs from '@rollup/plugin-commonjs'
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
const localImports = process.env.LOCALIMPORTS
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
const customModules = new Set([
 | 
					 | 
				
			||||||
  'y-websocket',
 | 
					 | 
				
			||||||
  'y-codemirror',
 | 
					 | 
				
			||||||
  'y-ace',
 | 
					 | 
				
			||||||
  'y-textarea',
 | 
					 | 
				
			||||||
  'y-quill',
 | 
					 | 
				
			||||||
  'y-dom',
 | 
					 | 
				
			||||||
  'y-prosemirror'
 | 
					 | 
				
			||||||
])
 | 
					 | 
				
			||||||
/**
 | 
					 | 
				
			||||||
 * @type {Set<any>}
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
const customLibModules = new Set([
 | 
					 | 
				
			||||||
  'lib0',
 | 
					 | 
				
			||||||
  'y-protocols'
 | 
					 | 
				
			||||||
])
 | 
					 | 
				
			||||||
const debugResolve = {
 | 
					 | 
				
			||||||
  resolveId (importee) {
 | 
					  resolveId (importee) {
 | 
				
			||||||
 | 
					    return
 | 
				
			||||||
    if (importee === 'yjs') {
 | 
					    if (importee === 'yjs') {
 | 
				
			||||||
      return `${process.cwd()}/src/index.js`
 | 
					      return `${process.cwd()}/src/index.js`
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    if (localImports) {
 | 
					 | 
				
			||||||
      if (customModules.has(importee.split('/')[0])) {
 | 
					 | 
				
			||||||
        return `${process.cwd()}/../${importee}/src/${importee}.js`
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      if (customLibModules.has(importee.split('/')[0])) {
 | 
					 | 
				
			||||||
        return `${process.cwd()}/../${importee}`
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return null
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default [{
 | 
					export default [{
 | 
				
			||||||
  input: './src/index.js',
 | 
					  // cjs output
 | 
				
			||||||
 | 
					  input: {
 | 
				
			||||||
 | 
					    yjs: './src/index.js',
 | 
				
			||||||
 | 
					    testHelper: './tests/testHelper.js',
 | 
				
			||||||
 | 
					    internals: './src/internals.js'
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
  output: {
 | 
					  output: {
 | 
				
			||||||
    name: 'Y',
 | 
					    dir: 'dist',
 | 
				
			||||||
    file: 'dist/yjs.cjs',
 | 
					 | 
				
			||||||
    format: 'cjs',
 | 
					    format: 'cjs',
 | 
				
			||||||
    sourcemap: true
 | 
					    entryFileNames : '[name].cjs',
 | 
				
			||||||
  },
 | 
					 | 
				
			||||||
  external: id => /^lib0\//.test(id)
 | 
					 | 
				
			||||||
}, {
 | 
					 | 
				
			||||||
  input: './src/index.js',
 | 
					 | 
				
			||||||
  output: {
 | 
					 | 
				
			||||||
    name: 'Y',
 | 
					 | 
				
			||||||
    file: 'dist/yjs.mjs',
 | 
					 | 
				
			||||||
    format: 'esm',
 | 
					 | 
				
			||||||
    sourcemap: true
 | 
					 | 
				
			||||||
  },
 | 
					 | 
				
			||||||
  external: id => /^lib0\//.test(id)
 | 
					 | 
				
			||||||
}, {
 | 
					 | 
				
			||||||
  input: './tests/testHelper.js',
 | 
					 | 
				
			||||||
  output: {
 | 
					 | 
				
			||||||
    name: 'Y',
 | 
					 | 
				
			||||||
    file: 'dist/testHelper.mjs',
 | 
					 | 
				
			||||||
    format: 'esm',
 | 
					 | 
				
			||||||
    sourcemap: true
 | 
					 | 
				
			||||||
  },
 | 
					 | 
				
			||||||
  external: id => /^lib0\//.test(id) || id === 'yjs',
 | 
					 | 
				
			||||||
  plugins: [{
 | 
					 | 
				
			||||||
    resolveId (importee) {
 | 
					 | 
				
			||||||
      if (importee === '../src/index.js') {
 | 
					 | 
				
			||||||
        return 'yjs'
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      return null
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }]
 | 
					 | 
				
			||||||
}, {
 | 
					 | 
				
			||||||
  input: './tests/index.js',
 | 
					 | 
				
			||||||
  output: {
 | 
					 | 
				
			||||||
    name: 'test',
 | 
					 | 
				
			||||||
    file: 'dist/tests.js',
 | 
					 | 
				
			||||||
    format: 'iife',
 | 
					 | 
				
			||||||
    sourcemap: true
 | 
					    sourcemap: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  plugins: [
 | 
					  plugins: [
 | 
				
			||||||
    debugResolve,
 | 
					    resolver
 | 
				
			||||||
    nodeResolve({
 | 
					 | 
				
			||||||
      mainFields: ['browser', 'module', 'main']
 | 
					 | 
				
			||||||
    }),
 | 
					 | 
				
			||||||
    commonjs()
 | 
					 | 
				
			||||||
  ]
 | 
					 | 
				
			||||||
}, {
 | 
					 | 
				
			||||||
  input: './tests/index.js',
 | 
					 | 
				
			||||||
  output: {
 | 
					 | 
				
			||||||
    name: 'test',
 | 
					 | 
				
			||||||
    file: 'dist/tests.cjs',
 | 
					 | 
				
			||||||
    format: 'cjs',
 | 
					 | 
				
			||||||
    sourcemap: true
 | 
					 | 
				
			||||||
  },
 | 
					 | 
				
			||||||
  plugins: [
 | 
					 | 
				
			||||||
    debugResolve,
 | 
					 | 
				
			||||||
    nodeResolve({
 | 
					 | 
				
			||||||
      mainFields: ['node', 'module', 'main'],
 | 
					 | 
				
			||||||
      exportConditions: ['node', 'module', 'import', 'default']
 | 
					 | 
				
			||||||
    }),
 | 
					 | 
				
			||||||
    commonjs()
 | 
					 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  external: id => /^lib0\//.test(id)
 | 
					  external: id => /^(lib0|y-protocols)\//.test(id)
 | 
				
			||||||
 | 
					}, {
 | 
				
			||||||
 | 
					  // esm output
 | 
				
			||||||
 | 
					  input: {
 | 
				
			||||||
 | 
					    yjs: './src/index.js',
 | 
				
			||||||
 | 
					    testHelper: './tests/testHelper.js',
 | 
				
			||||||
 | 
					    internals: './src/internals.js'
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  output: {
 | 
				
			||||||
 | 
					    dir: 'dist',
 | 
				
			||||||
 | 
					    format: 'esm',
 | 
				
			||||||
 | 
					    entryFileNames : '[name].mjs',
 | 
				
			||||||
 | 
					    sourcemap: true
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  plugins: [
 | 
				
			||||||
 | 
					    resolver
 | 
				
			||||||
 | 
					  ],
 | 
				
			||||||
 | 
					  external: id => /^(lib0|y-protocols)\//.test(id)
 | 
				
			||||||
}]
 | 
					}]
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										322
									
								
								test.html
									
									
									
									
									
								
							
							
						
						
									
										322
									
								
								test.html
									
									
									
									
									
								
							@ -1,9 +1,327 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
<!DOCTYPE html>
 | 
					<!DOCTYPE html>
 | 
				
			||||||
<html>
 | 
					<html>
 | 
				
			||||||
<head>
 | 
					<head>
 | 
				
			||||||
  <title>Testing Yjs</title>
 | 
					  <title>Testing yjs</title>
 | 
				
			||||||
 | 
					  <script type="importmap">
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					      "imports": {
 | 
				
			||||||
 | 
					  "yjs": "./src/index.js",
 | 
				
			||||||
 | 
					  "yjs/internals": "./src/internals.js",
 | 
				
			||||||
 | 
					  "yjs/testHelper": "./tests/testHelper.js",
 | 
				
			||||||
 | 
					  "yjs/package.json": "./package.json",
 | 
				
			||||||
 | 
					  "lib0/package.json": "./node_modules/lib0/package.json",
 | 
				
			||||||
 | 
					  "lib0": "./node_modules/lib0/index.js",
 | 
				
			||||||
 | 
					  "lib0/array.js": "./node_modules/lib0/array.js",
 | 
				
			||||||
 | 
					  "lib0/dist/array.cjs": "./node_modules/lib0/dist/array.cjs",
 | 
				
			||||||
 | 
					  "lib0/array": "./node_modules/lib0/array.js",
 | 
				
			||||||
 | 
					  "lib0/binary.js": "./node_modules/lib0/binary.js",
 | 
				
			||||||
 | 
					  "lib0/dist/binary.cjs": "./node_modules/lib0/dist/binary.cjs",
 | 
				
			||||||
 | 
					  "lib0/binary": "./node_modules/lib0/binary.js",
 | 
				
			||||||
 | 
					  "lib0/broadcastchannel.js": "./node_modules/lib0/broadcastchannel.js",
 | 
				
			||||||
 | 
					  "lib0/dist/broadcastchannel.cjs": "./node_modules/lib0/dist/broadcastchannel.cjs",
 | 
				
			||||||
 | 
					  "lib0/broadcastchannel": "./node_modules/lib0/broadcastchannel.js",
 | 
				
			||||||
 | 
					  "lib0/buffer.js": "./node_modules/lib0/buffer.js",
 | 
				
			||||||
 | 
					  "lib0/dist/buffer.cjs": "./node_modules/lib0/dist/buffer.cjs",
 | 
				
			||||||
 | 
					  "lib0/buffer": "./node_modules/lib0/buffer.js",
 | 
				
			||||||
 | 
					  "lib0/cache.js": "./node_modules/lib0/cache.js",
 | 
				
			||||||
 | 
					  "lib0/dist/cache.cjs": "./node_modules/lib0/dist/cache.cjs",
 | 
				
			||||||
 | 
					  "lib0/cache": "./node_modules/lib0/cache.js",
 | 
				
			||||||
 | 
					  "lib0/component.js": "./node_modules/lib0/component.js",
 | 
				
			||||||
 | 
					  "lib0/dist/component.cjs": "./node_modules/lib0/dist/component.cjs",
 | 
				
			||||||
 | 
					  "lib0/component": "./node_modules/lib0/component.js",
 | 
				
			||||||
 | 
					  "lib0/conditions.js": "./node_modules/lib0/conditions.js",
 | 
				
			||||||
 | 
					  "lib0/dist/conditions.cjs": "./node_modules/lib0/dist/conditions.cjs",
 | 
				
			||||||
 | 
					  "lib0/conditions": "./node_modules/lib0/conditions.js",
 | 
				
			||||||
 | 
					  "lib0/crypto/jwt": "./node_modules/lib0/crypto/jwt.js",
 | 
				
			||||||
 | 
					  "lib0/crypto/aes-gcm": "./node_modules/lib0/crypto/aes-gcm.js",
 | 
				
			||||||
 | 
					  "lib0/crypto/ecdsa": "./node_modules/lib0/crypto/ecdsa.js",
 | 
				
			||||||
 | 
					  "lib0/crypto/rsa-oaep": "./node_modules/lib0/crypto/rsa-oaep.js",
 | 
				
			||||||
 | 
					  "lib0/hash/rabin": "./node_modules/lib0/hash/rabin.js",
 | 
				
			||||||
 | 
					  "lib0/hash/sha256": "./node_modules/lib0/hash/sha256.js",
 | 
				
			||||||
 | 
					  "lib0/decoding.js": "./node_modules/lib0/decoding.js",
 | 
				
			||||||
 | 
					  "lib0/dist/decoding.cjs": "./node_modules/lib0/dist/decoding.cjs",
 | 
				
			||||||
 | 
					  "lib0/decoding": "./node_modules/lib0/decoding.js",
 | 
				
			||||||
 | 
					  "lib0/diff.js": "./node_modules/lib0/diff.js",
 | 
				
			||||||
 | 
					  "lib0/dist/diff.cjs": "./node_modules/lib0/dist/diff.cjs",
 | 
				
			||||||
 | 
					  "lib0/diff": "./node_modules/lib0/diff.js",
 | 
				
			||||||
 | 
					  "lib0/dom.js": "./node_modules/lib0/dom.js",
 | 
				
			||||||
 | 
					  "lib0/dist/dom.cjs": "./node_modules/lib0/dist/dom.cjs",
 | 
				
			||||||
 | 
					  "lib0/dom": "./node_modules/lib0/dom.js",
 | 
				
			||||||
 | 
					  "lib0/encoding.js": "./node_modules/lib0/encoding.js",
 | 
				
			||||||
 | 
					  "lib0/dist/encoding.cjs": "./node_modules/lib0/dist/encoding.cjs",
 | 
				
			||||||
 | 
					  "lib0/encoding": "./node_modules/lib0/encoding.js",
 | 
				
			||||||
 | 
					  "lib0/environment.js": "./node_modules/lib0/environment.js",
 | 
				
			||||||
 | 
					  "lib0/dist/environment.cjs": "./node_modules/lib0/dist/environment.cjs",
 | 
				
			||||||
 | 
					  "lib0/environment": "./node_modules/lib0/environment.js",
 | 
				
			||||||
 | 
					  "lib0/error.js": "./node_modules/lib0/error.js",
 | 
				
			||||||
 | 
					  "lib0/dist/error.cjs": "./node_modules/lib0/dist/error.cjs",
 | 
				
			||||||
 | 
					  "lib0/error": "./node_modules/lib0/error.js",
 | 
				
			||||||
 | 
					  "lib0/eventloop.js": "./node_modules/lib0/eventloop.js",
 | 
				
			||||||
 | 
					  "lib0/dist/eventloop.cjs": "./node_modules/lib0/dist/eventloop.cjs",
 | 
				
			||||||
 | 
					  "lib0/eventloop": "./node_modules/lib0/eventloop.js",
 | 
				
			||||||
 | 
					  "lib0/function.js": "./node_modules/lib0/function.js",
 | 
				
			||||||
 | 
					  "lib0/dist/function.cjs": "./node_modules/lib0/dist/function.cjs",
 | 
				
			||||||
 | 
					  "lib0/function": "./node_modules/lib0/function.js",
 | 
				
			||||||
 | 
					  "lib0/indexeddb.js": "./node_modules/lib0/indexeddb.js",
 | 
				
			||||||
 | 
					  "lib0/dist/indexeddb.cjs": "./node_modules/lib0/dist/indexeddb.cjs",
 | 
				
			||||||
 | 
					  "lib0/indexeddb": "./node_modules/lib0/indexeddb.js",
 | 
				
			||||||
 | 
					  "lib0/isomorphic.js": "./node_modules/lib0/isomorphic.js",
 | 
				
			||||||
 | 
					  "lib0/dist/isomorphic.cjs": "./node_modules/lib0/dist/isomorphic.cjs",
 | 
				
			||||||
 | 
					  "lib0/isomorphic": "./node_modules/lib0/isomorphic.js",
 | 
				
			||||||
 | 
					  "lib0/iterator.js": "./node_modules/lib0/iterator.js",
 | 
				
			||||||
 | 
					  "lib0/dist/iterator.cjs": "./node_modules/lib0/dist/iterator.cjs",
 | 
				
			||||||
 | 
					  "lib0/iterator": "./node_modules/lib0/iterator.js",
 | 
				
			||||||
 | 
					  "lib0/json.js": "./node_modules/lib0/json.js",
 | 
				
			||||||
 | 
					  "lib0/dist/json.cjs": "./node_modules/lib0/dist/json.cjs",
 | 
				
			||||||
 | 
					  "lib0/json": "./node_modules/lib0/json.js",
 | 
				
			||||||
 | 
					  "lib0/list.js": "./node_modules/lib0/list.js",
 | 
				
			||||||
 | 
					  "lib0/dist/list.cjs": "./node_modules/lib0/dist/list.cjs",
 | 
				
			||||||
 | 
					  "lib0/list": "./node_modules/lib0/list.js",
 | 
				
			||||||
 | 
					  "lib0/logging.js": "./node_modules/lib0/logging.js",
 | 
				
			||||||
 | 
					  "lib0/dist/logging.cjs": "./node_modules/lib0/dist/logging.node.cjs",
 | 
				
			||||||
 | 
					  "lib0/logging": "./node_modules/lib0/logging.js",
 | 
				
			||||||
 | 
					  "lib0/map.js": "./node_modules/lib0/map.js",
 | 
				
			||||||
 | 
					  "lib0/dist/map.cjs": "./node_modules/lib0/dist/map.cjs",
 | 
				
			||||||
 | 
					  "lib0/map": "./node_modules/lib0/map.js",
 | 
				
			||||||
 | 
					  "lib0/math.js": "./node_modules/lib0/math.js",
 | 
				
			||||||
 | 
					  "lib0/dist/math.cjs": "./node_modules/lib0/dist/math.cjs",
 | 
				
			||||||
 | 
					  "lib0/math": "./node_modules/lib0/math.js",
 | 
				
			||||||
 | 
					  "lib0/metric.js": "./node_modules/lib0/metric.js",
 | 
				
			||||||
 | 
					  "lib0/dist/metric.cjs": "./node_modules/lib0/dist/metric.cjs",
 | 
				
			||||||
 | 
					  "lib0/metric": "./node_modules/lib0/metric.js",
 | 
				
			||||||
 | 
					  "lib0/mutex.js": "./node_modules/lib0/mutex.js",
 | 
				
			||||||
 | 
					  "lib0/dist/mutex.cjs": "./node_modules/lib0/dist/mutex.cjs",
 | 
				
			||||||
 | 
					  "lib0/mutex": "./node_modules/lib0/mutex.js",
 | 
				
			||||||
 | 
					  "lib0/number.js": "./node_modules/lib0/number.js",
 | 
				
			||||||
 | 
					  "lib0/dist/number.cjs": "./node_modules/lib0/dist/number.cjs",
 | 
				
			||||||
 | 
					  "lib0/number": "./node_modules/lib0/number.js",
 | 
				
			||||||
 | 
					  "lib0/object.js": "./node_modules/lib0/object.js",
 | 
				
			||||||
 | 
					  "lib0/dist/object.cjs": "./node_modules/lib0/dist/object.cjs",
 | 
				
			||||||
 | 
					  "lib0/object": "./node_modules/lib0/object.js",
 | 
				
			||||||
 | 
					  "lib0/observable.js": "./node_modules/lib0/observable.js",
 | 
				
			||||||
 | 
					  "lib0/dist/observable.cjs": "./node_modules/lib0/dist/observable.cjs",
 | 
				
			||||||
 | 
					  "lib0/observable": "./node_modules/lib0/observable.js",
 | 
				
			||||||
 | 
					  "lib0/pair.js": "./node_modules/lib0/pair.js",
 | 
				
			||||||
 | 
					  "lib0/dist/pair.cjs": "./node_modules/lib0/dist/pair.cjs",
 | 
				
			||||||
 | 
					  "lib0/pair": "./node_modules/lib0/pair.js",
 | 
				
			||||||
 | 
					  "lib0/prng.js": "./node_modules/lib0/prng.js",
 | 
				
			||||||
 | 
					  "lib0/dist/prng.cjs": "./node_modules/lib0/dist/prng.cjs",
 | 
				
			||||||
 | 
					  "lib0/prng": "./node_modules/lib0/prng.js",
 | 
				
			||||||
 | 
					  "lib0/promise.js": "./node_modules/lib0/promise.js",
 | 
				
			||||||
 | 
					  "lib0/dist/promise.cjs": "./node_modules/lib0/dist/promise.cjs",
 | 
				
			||||||
 | 
					  "lib0/promise": "./node_modules/lib0/promise.js",
 | 
				
			||||||
 | 
					  "lib0/queue.js": "./node_modules/lib0/queue.js",
 | 
				
			||||||
 | 
					  "lib0/dist/queue.cjs": "./node_modules/lib0/dist/queue.cjs",
 | 
				
			||||||
 | 
					  "lib0/queue": "./node_modules/lib0/queue.js",
 | 
				
			||||||
 | 
					  "lib0/random.js": "./node_modules/lib0/random.js",
 | 
				
			||||||
 | 
					  "lib0/dist/random.cjs": "./node_modules/lib0/dist/random.cjs",
 | 
				
			||||||
 | 
					  "lib0/random": "./node_modules/lib0/random.js",
 | 
				
			||||||
 | 
					  "lib0/set.js": "./node_modules/lib0/set.js",
 | 
				
			||||||
 | 
					  "lib0/dist/set.cjs": "./node_modules/lib0/dist/set.cjs",
 | 
				
			||||||
 | 
					  "lib0/set": "./node_modules/lib0/set.js",
 | 
				
			||||||
 | 
					  "lib0/sort.js": "./node_modules/lib0/sort.js",
 | 
				
			||||||
 | 
					  "lib0/dist/sort.cjs": "./node_modules/lib0/dist/sort.cjs",
 | 
				
			||||||
 | 
					  "lib0/sort": "./node_modules/lib0/sort.js",
 | 
				
			||||||
 | 
					  "lib0/statistics.js": "./node_modules/lib0/statistics.js",
 | 
				
			||||||
 | 
					  "lib0/dist/statistics.cjs": "./node_modules/lib0/dist/statistics.cjs",
 | 
				
			||||||
 | 
					  "lib0/statistics": "./node_modules/lib0/statistics.js",
 | 
				
			||||||
 | 
					  "lib0/storage.js": "./node_modules/lib0/storage.js",
 | 
				
			||||||
 | 
					  "lib0/dist/storage.cjs": "./node_modules/lib0/dist/storage.cjs",
 | 
				
			||||||
 | 
					  "lib0/storage": "./node_modules/lib0/storage.js",
 | 
				
			||||||
 | 
					  "lib0/string.js": "./node_modules/lib0/string.js",
 | 
				
			||||||
 | 
					  "lib0/dist/string.cjs": "./node_modules/lib0/dist/string.cjs",
 | 
				
			||||||
 | 
					  "lib0/string": "./node_modules/lib0/string.js",
 | 
				
			||||||
 | 
					  "lib0/symbol.js": "./node_modules/lib0/symbol.js",
 | 
				
			||||||
 | 
					  "lib0/dist/symbol.cjs": "./node_modules/lib0/dist/symbol.cjs",
 | 
				
			||||||
 | 
					  "lib0/symbol": "./node_modules/lib0/symbol.js",
 | 
				
			||||||
 | 
					  "lib0/testing.js": "./node_modules/lib0/testing.js",
 | 
				
			||||||
 | 
					  "lib0/dist/testing.cjs": "./node_modules/lib0/dist/testing.cjs",
 | 
				
			||||||
 | 
					  "lib0/testing": "./node_modules/lib0/testing.js",
 | 
				
			||||||
 | 
					  "lib0/time.js": "./node_modules/lib0/time.js",
 | 
				
			||||||
 | 
					  "lib0/dist/time.cjs": "./node_modules/lib0/dist/time.cjs",
 | 
				
			||||||
 | 
					  "lib0/time": "./node_modules/lib0/time.js",
 | 
				
			||||||
 | 
					  "lib0/tree.js": "./node_modules/lib0/tree.js",
 | 
				
			||||||
 | 
					  "lib0/dist/tree.cjs": "./node_modules/lib0/dist/tree.cjs",
 | 
				
			||||||
 | 
					  "lib0/tree": "./node_modules/lib0/tree.js",
 | 
				
			||||||
 | 
					  "lib0/url.js": "./node_modules/lib0/url.js",
 | 
				
			||||||
 | 
					  "lib0/dist/url.cjs": "./node_modules/lib0/dist/url.cjs",
 | 
				
			||||||
 | 
					  "lib0/url": "./node_modules/lib0/url.js",
 | 
				
			||||||
 | 
					  "lib0/websocket.js": "./node_modules/lib0/websocket.js",
 | 
				
			||||||
 | 
					  "lib0/dist/websocket.cjs": "./node_modules/lib0/dist/websocket.cjs",
 | 
				
			||||||
 | 
					  "lib0/websocket": "./node_modules/lib0/websocket.js",
 | 
				
			||||||
 | 
					  "lib0/webcrypto": "./node_modules/lib0/webcrypto.js",
 | 
				
			||||||
 | 
					  "lib0/performance.js": "./node_modules/lib0/performance.js",
 | 
				
			||||||
 | 
					  "lib0/dist/performance.cjs": "./node_modules/lib0/dist/performance.node.cjs",
 | 
				
			||||||
 | 
					  "lib0/performance": "./node_modules/lib0/performance.js",
 | 
				
			||||||
 | 
					  "y-protocols/package.json": "./node_modules/y-protocols/package.json",
 | 
				
			||||||
 | 
					  "y-protocols/sync.js": "./node_modules/y-protocols/sync.js",
 | 
				
			||||||
 | 
					  "y-protocols/dist/sync.cjs": "./node_modules/y-protocols/dist/sync.cjs",
 | 
				
			||||||
 | 
					  "y-protocols/sync": "./node_modules/y-protocols/sync.js",
 | 
				
			||||||
 | 
					  "y-protocols/awareness.js": "./node_modules/y-protocols/awareness.js",
 | 
				
			||||||
 | 
					  "y-protocols/dist/awareness.cjs": "./node_modules/y-protocols/dist/awareness.cjs",
 | 
				
			||||||
 | 
					  "y-protocols/awareness": "./node_modules/y-protocols/awareness.js",
 | 
				
			||||||
 | 
					  "y-protocols/auth.js": "./node_modules/y-protocols/auth.js",
 | 
				
			||||||
 | 
					  "y-protocols/dist/auth.cjs": "./node_modules/y-protocols/dist/auth.cjs",
 | 
				
			||||||
 | 
					  "y-protocols/auth": "./node_modules/y-protocols/auth.js"
 | 
				
			||||||
 | 
					},
 | 
				
			||||||
 | 
					      "scopes": {
 | 
				
			||||||
 | 
					  "./node_modules/lib0/": {
 | 
				
			||||||
 | 
					    "isomorphic.js": "./node_modules/isomorphic.js/browser.mjs",
 | 
				
			||||||
 | 
					    "isomorphic.js/package.json": "./node_modules/isomorphic.js/package.json"
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "./node_modules/y-protocols/": {
 | 
				
			||||||
 | 
					    "lib0/package.json": "./node_modules/lib0/package.json",
 | 
				
			||||||
 | 
					    "lib0": "./node_modules/lib0/index.js",
 | 
				
			||||||
 | 
					    "lib0/array.js": "./node_modules/lib0/array.js",
 | 
				
			||||||
 | 
					    "lib0/dist/array.cjs": "./node_modules/lib0/dist/array.cjs",
 | 
				
			||||||
 | 
					    "lib0/array": "./node_modules/lib0/array.js",
 | 
				
			||||||
 | 
					    "lib0/binary.js": "./node_modules/lib0/binary.js",
 | 
				
			||||||
 | 
					    "lib0/dist/binary.cjs": "./node_modules/lib0/dist/binary.cjs",
 | 
				
			||||||
 | 
					    "lib0/binary": "./node_modules/lib0/binary.js",
 | 
				
			||||||
 | 
					    "lib0/broadcastchannel.js": "./node_modules/lib0/broadcastchannel.js",
 | 
				
			||||||
 | 
					    "lib0/dist/broadcastchannel.cjs": "./node_modules/lib0/dist/broadcastchannel.cjs",
 | 
				
			||||||
 | 
					    "lib0/broadcastchannel": "./node_modules/lib0/broadcastchannel.js",
 | 
				
			||||||
 | 
					    "lib0/buffer.js": "./node_modules/lib0/buffer.js",
 | 
				
			||||||
 | 
					    "lib0/dist/buffer.cjs": "./node_modules/lib0/dist/buffer.cjs",
 | 
				
			||||||
 | 
					    "lib0/buffer": "./node_modules/lib0/buffer.js",
 | 
				
			||||||
 | 
					    "lib0/cache.js": "./node_modules/lib0/cache.js",
 | 
				
			||||||
 | 
					    "lib0/dist/cache.cjs": "./node_modules/lib0/dist/cache.cjs",
 | 
				
			||||||
 | 
					    "lib0/cache": "./node_modules/lib0/cache.js",
 | 
				
			||||||
 | 
					    "lib0/component.js": "./node_modules/lib0/component.js",
 | 
				
			||||||
 | 
					    "lib0/dist/component.cjs": "./node_modules/lib0/dist/component.cjs",
 | 
				
			||||||
 | 
					    "lib0/component": "./node_modules/lib0/component.js",
 | 
				
			||||||
 | 
					    "lib0/conditions.js": "./node_modules/lib0/conditions.js",
 | 
				
			||||||
 | 
					    "lib0/dist/conditions.cjs": "./node_modules/lib0/dist/conditions.cjs",
 | 
				
			||||||
 | 
					    "lib0/conditions": "./node_modules/lib0/conditions.js",
 | 
				
			||||||
 | 
					    "lib0/crypto/jwt": "./node_modules/lib0/crypto/jwt.js",
 | 
				
			||||||
 | 
					    "lib0/crypto/aes-gcm": "./node_modules/lib0/crypto/aes-gcm.js",
 | 
				
			||||||
 | 
					    "lib0/crypto/ecdsa": "./node_modules/lib0/crypto/ecdsa.js",
 | 
				
			||||||
 | 
					    "lib0/crypto/rsa-oaep": "./node_modules/lib0/crypto/rsa-oaep.js",
 | 
				
			||||||
 | 
					    "lib0/hash/rabin": "./node_modules/lib0/hash/rabin.js",
 | 
				
			||||||
 | 
					    "lib0/hash/sha256": "./node_modules/lib0/hash/sha256.js",
 | 
				
			||||||
 | 
					    "lib0/decoding.js": "./node_modules/lib0/decoding.js",
 | 
				
			||||||
 | 
					    "lib0/dist/decoding.cjs": "./node_modules/lib0/dist/decoding.cjs",
 | 
				
			||||||
 | 
					    "lib0/decoding": "./node_modules/lib0/decoding.js",
 | 
				
			||||||
 | 
					    "lib0/diff.js": "./node_modules/lib0/diff.js",
 | 
				
			||||||
 | 
					    "lib0/dist/diff.cjs": "./node_modules/lib0/dist/diff.cjs",
 | 
				
			||||||
 | 
					    "lib0/diff": "./node_modules/lib0/diff.js",
 | 
				
			||||||
 | 
					    "lib0/dom.js": "./node_modules/lib0/dom.js",
 | 
				
			||||||
 | 
					    "lib0/dist/dom.cjs": "./node_modules/lib0/dist/dom.cjs",
 | 
				
			||||||
 | 
					    "lib0/dom": "./node_modules/lib0/dom.js",
 | 
				
			||||||
 | 
					    "lib0/encoding.js": "./node_modules/lib0/encoding.js",
 | 
				
			||||||
 | 
					    "lib0/dist/encoding.cjs": "./node_modules/lib0/dist/encoding.cjs",
 | 
				
			||||||
 | 
					    "lib0/encoding": "./node_modules/lib0/encoding.js",
 | 
				
			||||||
 | 
					    "lib0/environment.js": "./node_modules/lib0/environment.js",
 | 
				
			||||||
 | 
					    "lib0/dist/environment.cjs": "./node_modules/lib0/dist/environment.cjs",
 | 
				
			||||||
 | 
					    "lib0/environment": "./node_modules/lib0/environment.js",
 | 
				
			||||||
 | 
					    "lib0/error.js": "./node_modules/lib0/error.js",
 | 
				
			||||||
 | 
					    "lib0/dist/error.cjs": "./node_modules/lib0/dist/error.cjs",
 | 
				
			||||||
 | 
					    "lib0/error": "./node_modules/lib0/error.js",
 | 
				
			||||||
 | 
					    "lib0/eventloop.js": "./node_modules/lib0/eventloop.js",
 | 
				
			||||||
 | 
					    "lib0/dist/eventloop.cjs": "./node_modules/lib0/dist/eventloop.cjs",
 | 
				
			||||||
 | 
					    "lib0/eventloop": "./node_modules/lib0/eventloop.js",
 | 
				
			||||||
 | 
					    "lib0/function.js": "./node_modules/lib0/function.js",
 | 
				
			||||||
 | 
					    "lib0/dist/function.cjs": "./node_modules/lib0/dist/function.cjs",
 | 
				
			||||||
 | 
					    "lib0/function": "./node_modules/lib0/function.js",
 | 
				
			||||||
 | 
					    "lib0/indexeddb.js": "./node_modules/lib0/indexeddb.js",
 | 
				
			||||||
 | 
					    "lib0/dist/indexeddb.cjs": "./node_modules/lib0/dist/indexeddb.cjs",
 | 
				
			||||||
 | 
					    "lib0/indexeddb": "./node_modules/lib0/indexeddb.js",
 | 
				
			||||||
 | 
					    "lib0/isomorphic.js": "./node_modules/lib0/isomorphic.js",
 | 
				
			||||||
 | 
					    "lib0/dist/isomorphic.cjs": "./node_modules/lib0/dist/isomorphic.cjs",
 | 
				
			||||||
 | 
					    "lib0/isomorphic": "./node_modules/lib0/isomorphic.js",
 | 
				
			||||||
 | 
					    "lib0/iterator.js": "./node_modules/lib0/iterator.js",
 | 
				
			||||||
 | 
					    "lib0/dist/iterator.cjs": "./node_modules/lib0/dist/iterator.cjs",
 | 
				
			||||||
 | 
					    "lib0/iterator": "./node_modules/lib0/iterator.js",
 | 
				
			||||||
 | 
					    "lib0/json.js": "./node_modules/lib0/json.js",
 | 
				
			||||||
 | 
					    "lib0/dist/json.cjs": "./node_modules/lib0/dist/json.cjs",
 | 
				
			||||||
 | 
					    "lib0/json": "./node_modules/lib0/json.js",
 | 
				
			||||||
 | 
					    "lib0/list.js": "./node_modules/lib0/list.js",
 | 
				
			||||||
 | 
					    "lib0/dist/list.cjs": "./node_modules/lib0/dist/list.cjs",
 | 
				
			||||||
 | 
					    "lib0/list": "./node_modules/lib0/list.js",
 | 
				
			||||||
 | 
					    "lib0/logging.js": "./node_modules/lib0/logging.js",
 | 
				
			||||||
 | 
					    "lib0/dist/logging.cjs": "./node_modules/lib0/dist/logging.node.cjs",
 | 
				
			||||||
 | 
					    "lib0/logging": "./node_modules/lib0/logging.js",
 | 
				
			||||||
 | 
					    "lib0/map.js": "./node_modules/lib0/map.js",
 | 
				
			||||||
 | 
					    "lib0/dist/map.cjs": "./node_modules/lib0/dist/map.cjs",
 | 
				
			||||||
 | 
					    "lib0/map": "./node_modules/lib0/map.js",
 | 
				
			||||||
 | 
					    "lib0/math.js": "./node_modules/lib0/math.js",
 | 
				
			||||||
 | 
					    "lib0/dist/math.cjs": "./node_modules/lib0/dist/math.cjs",
 | 
				
			||||||
 | 
					    "lib0/math": "./node_modules/lib0/math.js",
 | 
				
			||||||
 | 
					    "lib0/metric.js": "./node_modules/lib0/metric.js",
 | 
				
			||||||
 | 
					    "lib0/dist/metric.cjs": "./node_modules/lib0/dist/metric.cjs",
 | 
				
			||||||
 | 
					    "lib0/metric": "./node_modules/lib0/metric.js",
 | 
				
			||||||
 | 
					    "lib0/mutex.js": "./node_modules/lib0/mutex.js",
 | 
				
			||||||
 | 
					    "lib0/dist/mutex.cjs": "./node_modules/lib0/dist/mutex.cjs",
 | 
				
			||||||
 | 
					    "lib0/mutex": "./node_modules/lib0/mutex.js",
 | 
				
			||||||
 | 
					    "lib0/number.js": "./node_modules/lib0/number.js",
 | 
				
			||||||
 | 
					    "lib0/dist/number.cjs": "./node_modules/lib0/dist/number.cjs",
 | 
				
			||||||
 | 
					    "lib0/number": "./node_modules/lib0/number.js",
 | 
				
			||||||
 | 
					    "lib0/object.js": "./node_modules/lib0/object.js",
 | 
				
			||||||
 | 
					    "lib0/dist/object.cjs": "./node_modules/lib0/dist/object.cjs",
 | 
				
			||||||
 | 
					    "lib0/object": "./node_modules/lib0/object.js",
 | 
				
			||||||
 | 
					    "lib0/observable.js": "./node_modules/lib0/observable.js",
 | 
				
			||||||
 | 
					    "lib0/dist/observable.cjs": "./node_modules/lib0/dist/observable.cjs",
 | 
				
			||||||
 | 
					    "lib0/observable": "./node_modules/lib0/observable.js",
 | 
				
			||||||
 | 
					    "lib0/pair.js": "./node_modules/lib0/pair.js",
 | 
				
			||||||
 | 
					    "lib0/dist/pair.cjs": "./node_modules/lib0/dist/pair.cjs",
 | 
				
			||||||
 | 
					    "lib0/pair": "./node_modules/lib0/pair.js",
 | 
				
			||||||
 | 
					    "lib0/prng.js": "./node_modules/lib0/prng.js",
 | 
				
			||||||
 | 
					    "lib0/dist/prng.cjs": "./node_modules/lib0/dist/prng.cjs",
 | 
				
			||||||
 | 
					    "lib0/prng": "./node_modules/lib0/prng.js",
 | 
				
			||||||
 | 
					    "lib0/promise.js": "./node_modules/lib0/promise.js",
 | 
				
			||||||
 | 
					    "lib0/dist/promise.cjs": "./node_modules/lib0/dist/promise.cjs",
 | 
				
			||||||
 | 
					    "lib0/promise": "./node_modules/lib0/promise.js",
 | 
				
			||||||
 | 
					    "lib0/queue.js": "./node_modules/lib0/queue.js",
 | 
				
			||||||
 | 
					    "lib0/dist/queue.cjs": "./node_modules/lib0/dist/queue.cjs",
 | 
				
			||||||
 | 
					    "lib0/queue": "./node_modules/lib0/queue.js",
 | 
				
			||||||
 | 
					    "lib0/random.js": "./node_modules/lib0/random.js",
 | 
				
			||||||
 | 
					    "lib0/dist/random.cjs": "./node_modules/lib0/dist/random.cjs",
 | 
				
			||||||
 | 
					    "lib0/random": "./node_modules/lib0/random.js",
 | 
				
			||||||
 | 
					    "lib0/set.js": "./node_modules/lib0/set.js",
 | 
				
			||||||
 | 
					    "lib0/dist/set.cjs": "./node_modules/lib0/dist/set.cjs",
 | 
				
			||||||
 | 
					    "lib0/set": "./node_modules/lib0/set.js",
 | 
				
			||||||
 | 
					    "lib0/sort.js": "./node_modules/lib0/sort.js",
 | 
				
			||||||
 | 
					    "lib0/dist/sort.cjs": "./node_modules/lib0/dist/sort.cjs",
 | 
				
			||||||
 | 
					    "lib0/sort": "./node_modules/lib0/sort.js",
 | 
				
			||||||
 | 
					    "lib0/statistics.js": "./node_modules/lib0/statistics.js",
 | 
				
			||||||
 | 
					    "lib0/dist/statistics.cjs": "./node_modules/lib0/dist/statistics.cjs",
 | 
				
			||||||
 | 
					    "lib0/statistics": "./node_modules/lib0/statistics.js",
 | 
				
			||||||
 | 
					    "lib0/storage.js": "./node_modules/lib0/storage.js",
 | 
				
			||||||
 | 
					    "lib0/dist/storage.cjs": "./node_modules/lib0/dist/storage.cjs",
 | 
				
			||||||
 | 
					    "lib0/storage": "./node_modules/lib0/storage.js",
 | 
				
			||||||
 | 
					    "lib0/string.js": "./node_modules/lib0/string.js",
 | 
				
			||||||
 | 
					    "lib0/dist/string.cjs": "./node_modules/lib0/dist/string.cjs",
 | 
				
			||||||
 | 
					    "lib0/string": "./node_modules/lib0/string.js",
 | 
				
			||||||
 | 
					    "lib0/symbol.js": "./node_modules/lib0/symbol.js",
 | 
				
			||||||
 | 
					    "lib0/dist/symbol.cjs": "./node_modules/lib0/dist/symbol.cjs",
 | 
				
			||||||
 | 
					    "lib0/symbol": "./node_modules/lib0/symbol.js",
 | 
				
			||||||
 | 
					    "lib0/testing.js": "./node_modules/lib0/testing.js",
 | 
				
			||||||
 | 
					    "lib0/dist/testing.cjs": "./node_modules/lib0/dist/testing.cjs",
 | 
				
			||||||
 | 
					    "lib0/testing": "./node_modules/lib0/testing.js",
 | 
				
			||||||
 | 
					    "lib0/time.js": "./node_modules/lib0/time.js",
 | 
				
			||||||
 | 
					    "lib0/dist/time.cjs": "./node_modules/lib0/dist/time.cjs",
 | 
				
			||||||
 | 
					    "lib0/time": "./node_modules/lib0/time.js",
 | 
				
			||||||
 | 
					    "lib0/tree.js": "./node_modules/lib0/tree.js",
 | 
				
			||||||
 | 
					    "lib0/dist/tree.cjs": "./node_modules/lib0/dist/tree.cjs",
 | 
				
			||||||
 | 
					    "lib0/tree": "./node_modules/lib0/tree.js",
 | 
				
			||||||
 | 
					    "lib0/url.js": "./node_modules/lib0/url.js",
 | 
				
			||||||
 | 
					    "lib0/dist/url.cjs": "./node_modules/lib0/dist/url.cjs",
 | 
				
			||||||
 | 
					    "lib0/url": "./node_modules/lib0/url.js",
 | 
				
			||||||
 | 
					    "lib0/websocket.js": "./node_modules/lib0/websocket.js",
 | 
				
			||||||
 | 
					    "lib0/dist/websocket.cjs": "./node_modules/lib0/dist/websocket.cjs",
 | 
				
			||||||
 | 
					    "lib0/websocket": "./node_modules/lib0/websocket.js",
 | 
				
			||||||
 | 
					    "lib0/webcrypto": "./node_modules/lib0/webcrypto.js",
 | 
				
			||||||
 | 
					    "lib0/performance.js": "./node_modules/lib0/performance.js",
 | 
				
			||||||
 | 
					    "lib0/dist/performance.cjs": "./node_modules/lib0/dist/performance.node.cjs",
 | 
				
			||||||
 | 
					    "lib0/performance": "./node_modules/lib0/performance.js"
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  </script>
 | 
				
			||||||
</head>
 | 
					</head>
 | 
				
			||||||
<body>
 | 
					<body>
 | 
				
			||||||
  <script type="module" src="./dist/tests.js"></script>
 | 
					  <script type="module" src="./tests/index.js"></script>
 | 
				
			||||||
</body>
 | 
					</body>
 | 
				
			||||||
</html>
 | 
					</html>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -11,11 +11,11 @@ import * as doc from './doc.tests.js'
 | 
				
			|||||||
import * as snapshot from './snapshot.tests.js'
 | 
					import * as snapshot from './snapshot.tests.js'
 | 
				
			||||||
import * as updates from './updates.tests.js'
 | 
					import * as updates from './updates.tests.js'
 | 
				
			||||||
import * as relativePositions from './relativePositions.tests.js'
 | 
					import * as relativePositions from './relativePositions.tests.js'
 | 
				
			||||||
 | 
					// import * as delta from './delta.tests.js'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { runTests } from 'lib0/testing'
 | 
					import { runTests } from 'lib0/testing'
 | 
				
			||||||
import { isBrowser, isNode } from 'lib0/environment'
 | 
					import { isBrowser, isNode } from 'lib0/environment'
 | 
				
			||||||
import * as log from 'lib0/logging'
 | 
					import * as log from 'lib0/logging'
 | 
				
			||||||
import { environment } from 'lib0'
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
if (isBrowser) {
 | 
					if (isBrowser) {
 | 
				
			||||||
  log.createVConsole(document.body)
 | 
					  log.createVConsole(document.body)
 | 
				
			||||||
@ -25,14 +25,10 @@ if (isBrowser) {
 | 
				
			|||||||
 * @type {any}
 | 
					 * @type {any}
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
const tests = {
 | 
					const tests = {
 | 
				
			||||||
  doc, map, array, text, xml, encoding, undoredo, compatibility, snapshot, updates, relativePositions
 | 
					  doc, map, array, text, xml, encoding, undoredo, compatibility, snapshot, updates, relativePositions, delta
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const run = async () => {
 | 
					const run = async () => {
 | 
				
			||||||
  if (environment.isNode) {
 | 
					 | 
				
			||||||
    // tests.nodejs = await import('./node.tests.js')
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  const success = await runTests(tests)
 | 
					  const success = await runTests(tests)
 | 
				
			||||||
  /* istanbul ignore next */
 | 
					  /* istanbul ignore next */
 | 
				
			||||||
  if (isNode) {
 | 
					  if (isNode) {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,5 @@
 | 
				
			|||||||
import { init } from './testHelper.js' // eslint-disable-line
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
import * as Y from '../src/index.js'
 | 
					import * as Y from '../src/index.js'
 | 
				
			||||||
 | 
					import { init } from './testHelper.js' // eslint-disable-line
 | 
				
			||||||
import * as t from 'lib0/testing'
 | 
					import * as t from 'lib0/testing'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const testInconsistentFormat = () => {
 | 
					export const testInconsistentFormat = () => {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,6 @@
 | 
				
			|||||||
import * as t from 'lib0/testing'
 | 
					import * as t from 'lib0/testing'
 | 
				
			||||||
import { init, compare } from './testHelper.js' // eslint-disable-line
 | 
					 | 
				
			||||||
import * as Y from '../src/index.js'
 | 
					import * as Y from '../src/index.js'
 | 
				
			||||||
 | 
					import { init, compare } from './testHelper.js' // eslint-disable-line
 | 
				
			||||||
import { readClientsStructRefs, readDeleteSet, UpdateDecoderV2, UpdateEncoderV2, writeDeleteSet } from '../src/internals.js'
 | 
					import { readClientsStructRefs, readDeleteSet, UpdateDecoderV2, UpdateEncoderV2, writeDeleteSet } from '../src/internals.js'
 | 
				
			||||||
import * as encoding from 'lib0/encoding'
 | 
					import * as encoding from 'lib0/encoding'
 | 
				
			||||||
import * as decoding from 'lib0/decoding'
 | 
					import * as decoding from 'lib0/decoding'
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,4 @@
 | 
				
			|||||||
import { init, compare, applyRandomTests, Doc } from './testHelper.js' // eslint-disable-line
 | 
					import { init, compare, applyRandomTests, Doc } from './testHelper.js' // eslint-disable-line
 | 
				
			||||||
 | 
					 | 
				
			||||||
import * as Y from '../src/index.js'
 | 
					import * as Y from '../src/index.js'
 | 
				
			||||||
import * as t from 'lib0/testing'
 | 
					import * as t from 'lib0/testing'
 | 
				
			||||||
import * as prng from 'lib0/prng'
 | 
					import * as prng from 'lib0/prng'
 | 
				
			||||||
 | 
				
			|||||||
@ -1,10 +1,8 @@
 | 
				
			|||||||
 | 
					import * as Y from '../src/index.js'
 | 
				
			||||||
import { init, compare, applyRandomTests, Doc } from './testHelper.js' // eslint-disable-line
 | 
					import { init, compare, applyRandomTests, Doc } from './testHelper.js' // eslint-disable-line
 | 
				
			||||||
 | 
					 | 
				
			||||||
import {
 | 
					import {
 | 
				
			||||||
  compareIDs
 | 
					  compareIDs
 | 
				
			||||||
} from '../src/internals.js'
 | 
					} from '../src/internals.js'
 | 
				
			||||||
 | 
					 | 
				
			||||||
import * as Y from '../src/index.js'
 | 
					 | 
				
			||||||
import * as t from 'lib0/testing'
 | 
					import * as t from 'lib0/testing'
 | 
				
			||||||
import * as prng from 'lib0/prng'
 | 
					import * as prng from 'lib0/prng'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,5 @@
 | 
				
			|||||||
import { init, compare } from './testHelper.js'
 | 
					 | 
				
			||||||
import * as Y from '../src/index.js'
 | 
					import * as Y from '../src/index.js'
 | 
				
			||||||
 | 
					import { init, compare } from './testHelper.js'
 | 
				
			||||||
import * as t from 'lib0/testing'
 | 
					import * as t from 'lib0/testing'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const testCustomTypings = () => {
 | 
					export const testCustomTypings = () => {
 | 
				
			||||||
 | 
				
			|||||||
@ -14,7 +14,9 @@
 | 
				
			|||||||
    "noImplicitAny": true,
 | 
					    "noImplicitAny": true,
 | 
				
			||||||
    "moduleResolution": "nodenext",
 | 
					    "moduleResolution": "nodenext",
 | 
				
			||||||
    "paths": {
 | 
					    "paths": {
 | 
				
			||||||
      "yjs": ["./src/index.js"]
 | 
					      "yjs": ["./src/index.js"],
 | 
				
			||||||
 | 
					      "yjs/internals": ["./src/internals.js"],
 | 
				
			||||||
 | 
					      "yjs/testHelper": ["./tests/testHelper.js"]
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "include": ["./src/**/*.js", "./tests/**/*.js"]
 | 
					  "include": ["./src/**/*.js", "./tests/**/*.js"]
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user