@textbus/collaborate 3.0.0-alpha.17 → 3.0.0-alpha.18
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/rollup.config.ts +0 -20
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@textbus/collaborate",
|
3
|
-
"version": "3.0.0-alpha.
|
3
|
+
"version": "3.0.0-alpha.18",
|
4
4
|
"description": "Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.",
|
5
5
|
"main": "./bundles/index.js",
|
6
6
|
"module": "./bundles/index.esm.js",
|
@@ -27,8 +27,8 @@
|
|
27
27
|
"dependencies": {
|
28
28
|
"@tanbo/di": "^1.1.3",
|
29
29
|
"@tanbo/stream": "^1.1.8",
|
30
|
-
"@textbus/browser": "^3.0.0-alpha.
|
31
|
-
"@textbus/core": "^3.0.0-alpha.
|
30
|
+
"@textbus/browser": "^3.0.0-alpha.18",
|
31
|
+
"@textbus/core": "^3.0.0-alpha.18",
|
32
32
|
"reflect-metadata": "^0.1.13",
|
33
33
|
"y-protocols": "^1.0.5",
|
34
34
|
"yjs": "^13.5.39"
|
@@ -49,5 +49,5 @@
|
|
49
49
|
"bugs": {
|
50
50
|
"url": "https://github.com/textbus/textbus.git/issues"
|
51
51
|
},
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "ad67f6d53c60b69f39cb8671be1d81aff7554058"
|
53
53
|
}
|
package/rollup.config.ts
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
import commonjs from '@rollup/plugin-commonjs'
|
2
|
-
import typescript from '@rollup/plugin-typescript'
|
3
|
-
|
4
|
-
export default {
|
5
|
-
input: 'src/public-api.ts',
|
6
|
-
output: [
|
7
|
-
{
|
8
|
-
file: './bundles/index.js',
|
9
|
-
format: 'cjs'
|
10
|
-
},
|
11
|
-
{
|
12
|
-
file: './bundles/index.esm.js',
|
13
|
-
format: 'esm'
|
14
|
-
}
|
15
|
-
],
|
16
|
-
plugins: [
|
17
|
-
commonjs(),
|
18
|
-
typescript()
|
19
|
-
]
|
20
|
-
}
|