use condititional exports of dependencies
This commit is contained in:
parent
fdc3ab1565
commit
e3615979b4
2125
package-lock.json
generated
Normal file
2125
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
13
package.json
13
package.json
@ -25,6 +25,13 @@
|
|||||||
"bin/*",
|
"bin/*",
|
||||||
"src/*"
|
"src/*"
|
||||||
],
|
],
|
||||||
|
"exports": {
|
||||||
|
"./package.json": "./package.json",
|
||||||
|
".": {
|
||||||
|
"import": "./src/y-websocket.js",
|
||||||
|
"require": "./dist/y-websocket.cjs"
|
||||||
|
}
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/yjs/y-websocket.git"
|
"url": "git+https://github.com/yjs/y-websocket.git"
|
||||||
@ -45,9 +52,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lib0": "^0.2.35",
|
"lib0": "^0.2.42",
|
||||||
"lodash.debounce": "^4.0.8",
|
"lodash.debounce": "^4.0.8",
|
||||||
"y-protocols": "^1.0.4"
|
"y-protocols": "^1.0.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"rollup": "^1.32.1",
|
"rollup": "^1.32.1",
|
||||||
@ -57,7 +64,7 @@
|
|||||||
"yjs": "^13.5.0"
|
"yjs": "^13.5.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"yjs": "^13.5.0"
|
"yjs": "^13.5.6"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"ws": "^6.2.1",
|
"ws": "^6.2.1",
|
||||||
|
|||||||
@ -8,9 +8,9 @@ export default {
|
|||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
paths: path => {
|
paths: path => {
|
||||||
if (/^lib0\//.test(path)) {
|
if (/^lib0\//.test(path)) {
|
||||||
return `lib0/dist${path.slice(4, -3)}.cjs`
|
return `lib0/dist${path.slice(4)}.cjs`
|
||||||
} else if (/^y-protocols\//.test(path)) {
|
} else if (/^y-protocols\//.test(path)) {
|
||||||
return `y-protocols/dist${path.slice(11, -3)}.cjs`
|
return `y-protocols/dist${path.slice(11)}.cjs`
|
||||||
}
|
}
|
||||||
return path
|
return path
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,17 +9,17 @@ Unlike stated in the LICENSE file, it is not necessary to include the copyright
|
|||||||
/* eslint-env browser */
|
/* eslint-env browser */
|
||||||
|
|
||||||
import * as Y from 'yjs' // eslint-disable-line
|
import * as Y from 'yjs' // eslint-disable-line
|
||||||
import * as bc from 'lib0/broadcastchannel.js'
|
import * as bc from 'lib0/broadcastchannel'
|
||||||
import * as time from 'lib0/time.js'
|
import * as time from 'lib0/time'
|
||||||
import * as encoding from 'lib0/encoding.js'
|
import * as encoding from 'lib0/encoding'
|
||||||
import * as decoding from 'lib0/decoding.js'
|
import * as decoding from 'lib0/decoding'
|
||||||
import * as syncProtocol from 'y-protocols/sync.js'
|
import * as syncProtocol from 'y-protocols/sync'
|
||||||
import * as authProtocol from 'y-protocols/auth.js'
|
import * as authProtocol from 'y-protocols/auth'
|
||||||
import * as awarenessProtocol from 'y-protocols/awareness.js'
|
import * as awarenessProtocol from 'y-protocols/awareness'
|
||||||
import * as mutex from 'lib0/mutex.js'
|
import * as mutex from 'lib0/mutex'
|
||||||
import { Observable } from 'lib0/observable.js'
|
import { Observable } from 'lib0/observable'
|
||||||
import * as math from 'lib0/math.js'
|
import * as math from 'lib0/math'
|
||||||
import * as url from 'lib0/url.js'
|
import * as url from 'lib0/url'
|
||||||
|
|
||||||
const messageSync = 0
|
const messageSync = 0
|
||||||
const messageQueryAwareness = 3
|
const messageQueryAwareness = 3
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user