@cocreate/text 1.20.11 → 1.20.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/FUNDING.yml +3 -3
- package/.github/workflows/automated.yml +95 -95
- package/.github/workflows/manual.yml +44 -44
- package/CHANGELOG.md +1797 -1782
- package/CONTRIBUTING.md +96 -96
- package/CoCreate.config.js +26 -26
- package/LICENSE +683 -683
- package/README.md +97 -97
- package/demo/custom-rich-text.html +277 -152
- package/demo/demos.1.html +24 -25
- package/demo/demos.html +38 -38
- package/demo/index.html +74 -36
- package/demo/test-webpage.html +376 -376
- package/docs/index.html +276 -105
- package/package.json +73 -73
- package/release.config.js +21 -21
- package/src/index.js +470 -470
- package/src/saveDomText.js +32 -32
- package/src/updateDom.js +208 -208
- package/src/updateText.js +79 -79
- package/webpack.config.js +84 -84
package/docs/index.html
CHANGED
@@ -1,105 +1,276 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html lang="en">
|
3
|
-
<head>
|
4
|
-
<meta charset="utf-8"
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge"
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"
|
7
|
-
<title>CoCreate-text Documentation | CoCreateJS
|
8
|
-
<link
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
<
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8" />
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
7
|
+
<title>CoCreate-text Documentation | CoCreateJS</title>
|
8
|
+
<link
|
9
|
+
rel="icon"
|
10
|
+
type="image/png"
|
11
|
+
sizes="32x32"
|
12
|
+
href="https://cocreate.app/images/favicon.ico" />
|
13
|
+
<meta
|
14
|
+
name="description"
|
15
|
+
content="A simple HTML5 and pure javascript component. Easy configuration using HTML5 attributes or Javscript api and highly styleable." />
|
16
|
+
<meta
|
17
|
+
name="keywords"
|
18
|
+
content="helper classes, utility classes, css framework, css library, inline style classes" />
|
19
|
+
<meta name="robots" content="index,follow" />
|
20
|
+
<meta
|
21
|
+
property="og:image"
|
22
|
+
content="https://cdn.cocreate.app/docs/boilerplate.png" />
|
23
|
+
<link
|
24
|
+
rel="stylesheet"
|
25
|
+
href="/docs/index.css"
|
26
|
+
collection="files"
|
27
|
+
document_id="60888216117c640e7596303f"
|
28
|
+
name="src"
|
29
|
+
type="text/css"
|
30
|
+
save="true" />
|
31
|
+
<link rel="manifest" href="/manifest.webmanifest" />
|
32
|
+
</head>
|
33
|
+
|
34
|
+
<body>
|
35
|
+
<nav
|
36
|
+
class="nav display:flex align-items:center left:0px background:whitesmoke padding-top:10px padding-bottom:10px"
|
37
|
+
content_id="content"
|
38
|
+
scroll="sticky-nav,hide-nav"
|
39
|
+
scroll-up="10"
|
40
|
+
scroll-down="10"
|
41
|
+
collection="files"
|
42
|
+
document_id="60395ef42b3ac232657040fd"
|
43
|
+
name="src"></nav>
|
44
|
+
<sidenav
|
45
|
+
id="menuL"
|
46
|
+
class="position:fixed top:0px left:0px overflow:hidden background:whitesmoke height:100vh width:0px width:300px@xl"
|
47
|
+
resizable
|
48
|
+
resize-target="[content_id='content']"
|
49
|
+
resize-property="margin-left"
|
50
|
+
resize-value="width">
|
51
|
+
<menu
|
52
|
+
collection="files"
|
53
|
+
document_id="603717b07de7fb350ae9fec8"
|
54
|
+
name="src"></menu>
|
55
|
+
<div resize="right"></div>
|
56
|
+
</sidenav>
|
57
|
+
<main
|
58
|
+
class="padding-top:15px padding:15px@lg@xl"
|
59
|
+
content_id="content"
|
60
|
+
id="cocreate-text">
|
61
|
+
<div
|
62
|
+
class="display:flex flex-wrap:wrap justify-content:space-between">
|
63
|
+
<div class="display:flex align-items:center">
|
64
|
+
<h2>CoCreate-text</h2>
|
65
|
+
</div>
|
66
|
+
<div
|
67
|
+
class="display:flex align-items:center font-size:20px"
|
68
|
+
share-height="600"
|
69
|
+
share-width="500"
|
70
|
+
share-media="https://via.placeholder.com/300/09f/fff.png">
|
71
|
+
<a
|
72
|
+
href="https://github.com/CoCreate-app/CoCreate-text"
|
73
|
+
target="_blank"
|
74
|
+
class="margin-right:15px"
|
75
|
+
><i
|
76
|
+
class="height:20px fill:#505050"
|
77
|
+
src="/assets/svg/github.svg"></i
|
78
|
+
></a>
|
79
|
+
<a
|
80
|
+
class="margin-right:15px share"
|
81
|
+
share-network="twitter"
|
82
|
+
title="Share on twitter"
|
83
|
+
><i
|
84
|
+
class="height:20px fill:#505050"
|
85
|
+
src="/assets/svg/twitter.svg"></i
|
86
|
+
></a>
|
87
|
+
<a
|
88
|
+
class="margin-right:15px share"
|
89
|
+
share-network="facebook"
|
90
|
+
title="Share on Facebook"
|
91
|
+
><i
|
92
|
+
class="height:20px fill:#505050"
|
93
|
+
src="/assets/svg/facebook.svg"></i
|
94
|
+
></a>
|
95
|
+
<a
|
96
|
+
class="margin-right:15px share"
|
97
|
+
share-network="instagram"
|
98
|
+
title="Share on instagram"
|
99
|
+
><i
|
100
|
+
class="height:20px fill:#505050"
|
101
|
+
src="/assets/svg/instagram.svg"></i
|
102
|
+
></a>
|
103
|
+
<a
|
104
|
+
class="margin-right:15px share"
|
105
|
+
share-network="share"
|
106
|
+
title="Share on share"
|
107
|
+
><i
|
108
|
+
class="height:20px fill:#505050"
|
109
|
+
src="/assets/svg/share-alt.svg"></i
|
110
|
+
></a>
|
111
|
+
</div>
|
112
|
+
</div>
|
113
|
+
<h1 class="max-width:500px margin:20px_0px">
|
114
|
+
A headless vinilla javascript micro component. Easy
|
115
|
+
configuration using HTML5 attributes or Javscript api.
|
116
|
+
</h1>
|
117
|
+
<div id="text-section" class="display:flex flex-wrap:wrap">
|
118
|
+
<div
|
119
|
+
class="flex-grow:1 width:300px padding:0px_10px margin:20px_0px">
|
120
|
+
<h2
|
121
|
+
class="border-bottom:1px_solid_lightgrey padding:5px_0px">
|
122
|
+
Install
|
123
|
+
</h2>
|
124
|
+
<pre><code class="language-javascript">npm install cocreate-text</code></pre>
|
125
|
+
<p class="padding:10px_0px">Or you can use cdn link:</p>
|
126
|
+
<pre><code class="language-javascript">https://cdn.cocreate.app/CoCreate-text.min.js</code></pre>
|
127
|
+
|
128
|
+
<h2
|
129
|
+
class="border-bottom:1px_solid_lightgrey margin-top:80px padding:5px_0px">
|
130
|
+
Usage
|
131
|
+
</h2>
|
132
|
+
<div class="">
|
133
|
+
<p class="padding:10px_0px">This is text reference</p>
|
134
|
+
|
135
|
+
<div class="flex-grow:1 min-width:300px width:100%">
|
136
|
+
<pre>
|
137
|
+
<code><div></div></code>
|
138
|
+
</pre>
|
139
|
+
</div>
|
140
|
+
<p class="padding:10px_0px">This is text reference</p>
|
141
|
+
<p class="padding:10px_0px">This is text reference</p>
|
142
|
+
</div>
|
143
|
+
<h2
|
144
|
+
class="border-bottom:1px_solid_lightgrey padding:5px_0px">
|
145
|
+
Attributes
|
146
|
+
</h2>
|
147
|
+
<ul class="list-style-type:none">
|
148
|
+
<li
|
149
|
+
class="padding:15px_0px border-bottom:1px_solid_lightgrey">
|
150
|
+
<h4>
|
151
|
+
<span>text</span>
|
152
|
+
<span class="cocreate-badge success"
|
153
|
+
>string</span
|
154
|
+
>
|
155
|
+
<span class="cocreate-badge warning"
|
156
|
+
>optional</span
|
157
|
+
>
|
158
|
+
</h4>
|
159
|
+
<p>text-attribute</p>
|
160
|
+
</li>
|
161
|
+
<li
|
162
|
+
class="padding:15px_0px border-bottom:1px_solid_lightgrey">
|
163
|
+
<h4>
|
164
|
+
<span>text</span>
|
165
|
+
<span class="cocreate-badge success"
|
166
|
+
>string</span
|
167
|
+
>
|
168
|
+
<span class="cocreate-badge warning"
|
169
|
+
>optional</span
|
170
|
+
>
|
171
|
+
</h4>
|
172
|
+
<p>text-attribute</p>
|
173
|
+
</li>
|
174
|
+
</ul>
|
175
|
+
</div>
|
176
|
+
|
177
|
+
<div
|
178
|
+
class="flex-grow:1 width:300px padding:0px_10px margin:20px_0px border-bottom:1px_solid_lightgrey">
|
179
|
+
<!-- SandBox -->
|
180
|
+
<h2
|
181
|
+
class="border-bottom:1px_solid_lightgrey padding:5px_0px">
|
182
|
+
Demo
|
183
|
+
</h2>
|
184
|
+
<div
|
185
|
+
class="position:sticky top:0 padding:15px_0px height:100vh">
|
186
|
+
<!-- SandBox -->
|
187
|
+
<div
|
188
|
+
class="display:flex flex-direction:column position:relative overflow:hidden card border-radius:2px width:auto height:600px margin-top:20px"
|
189
|
+
id="playground">
|
190
|
+
<div
|
191
|
+
id="demo-code"
|
192
|
+
resizable
|
193
|
+
class="position:relative height:50%">
|
194
|
+
<textarea
|
195
|
+
type="code"
|
196
|
+
lang="html"
|
197
|
+
collection="demos"
|
198
|
+
document_id=""
|
199
|
+
name="demo"
|
200
|
+
save="false"
|
201
|
+
id="demo"
|
202
|
+
input-target=".demopreview"
|
203
|
+
input-attribute="value"
|
204
|
+
input-events="input, onload"
|
205
|
+
class="height:100% width:100% outline:none border:none resize:none padding:5px"></textarea>
|
206
|
+
<div
|
207
|
+
resize="bottom"
|
208
|
+
class="background:lightgrey"></div>
|
209
|
+
</div>
|
210
|
+
|
211
|
+
<div
|
212
|
+
id="demo-preview"
|
213
|
+
class="position:relative overflow:auto background-color:white">
|
214
|
+
<div class="demopreview padding:20px"></div>
|
215
|
+
</div>
|
216
|
+
|
217
|
+
<div
|
218
|
+
class="font-size:20px position:absolute top:10px right:10px opacity:0.6">
|
219
|
+
<a
|
220
|
+
class="margin-right:10px"
|
221
|
+
id="eye"
|
222
|
+
show="#eye-slash"
|
223
|
+
hide="#eye, #demo-preview"
|
224
|
+
toggle="code-height"
|
225
|
+
toggle-target="#demo-code"
|
226
|
+
><i
|
227
|
+
class="height:18px fill:#505050"
|
228
|
+
src="/assets/svg/eye.svg"></i
|
229
|
+
></a>
|
230
|
+
<a
|
231
|
+
class="margin-right:10px"
|
232
|
+
hidden
|
233
|
+
id="eye-slash"
|
234
|
+
show="#eye, #demo-preview"
|
235
|
+
hide="#eye-slash"
|
236
|
+
toggle="code-height"
|
237
|
+
toggle-target="#demo-code"
|
238
|
+
><i
|
239
|
+
class="height:20px fill:#505050"
|
240
|
+
src="/assets/svg/eye-slash.svg"></i
|
241
|
+
></a>
|
242
|
+
<a
|
243
|
+
class="margin-right:10px"
|
244
|
+
id="code"
|
245
|
+
show="#code-slash"
|
246
|
+
hide="#code, #demo-code"
|
247
|
+
><i
|
248
|
+
class="height:20px fill:#505050"
|
249
|
+
src="/assets/svg/code.svg"></i
|
250
|
+
></a>
|
251
|
+
<a
|
252
|
+
class="margin-right:10px"
|
253
|
+
hidden
|
254
|
+
id="code-slash"
|
255
|
+
show="#code, #demo-code"
|
256
|
+
hide="#code-slash"
|
257
|
+
><i
|
258
|
+
class="display:flex height:18px fill:#505050"
|
259
|
+
src="/assets/svg/code.svg"></i
|
260
|
+
></a>
|
261
|
+
<a
|
262
|
+
class="margin-right:5px"
|
263
|
+
fullscreen
|
264
|
+
fullscreen-target="#playground"></a>
|
265
|
+
</div>
|
266
|
+
</div>
|
267
|
+
<!-- End SandBox -->
|
268
|
+
</div>
|
269
|
+
</div>
|
270
|
+
</div>
|
271
|
+
</main>
|
272
|
+
|
273
|
+
<script src="/apikey.js"></script>
|
274
|
+
<script src="https://cdn.cocreate.app/latest/CoCreate.min.js"></script>
|
275
|
+
</body>
|
276
|
+
</html>
|
package/package.json
CHANGED
@@ -1,73 +1,73 @@
|
|
1
|
-
{
|
2
|
-
"name": "@cocreate/text",
|
3
|
-
"version": "1.20.
|
4
|
-
"description": "A simple text component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
5
|
-
"keywords": [
|
6
|
-
"text",
|
7
|
-
"cocreate",
|
8
|
-
"low-code-framework",
|
9
|
-
"no-code-framework",
|
10
|
-
"cocreatejs",
|
11
|
-
"cocreatejs-component",
|
12
|
-
"cocreate-framework",
|
13
|
-
"no-code",
|
14
|
-
"low-code",
|
15
|
-
"collaborative-framework",
|
16
|
-
"realtime",
|
17
|
-
"realtime-framework",
|
18
|
-
"collaboration",
|
19
|
-
"shared-editing",
|
20
|
-
"html5-framework",
|
21
|
-
"javascript-framework"
|
22
|
-
],
|
23
|
-
"publishConfig": {
|
24
|
-
"access": "public"
|
25
|
-
},
|
26
|
-
"scripts": {
|
27
|
-
"start": "npx webpack --config webpack.config.js",
|
28
|
-
"build": "NODE_ENV=production npx webpack --config webpack.config.js",
|
29
|
-
"dev": "npx webpack --config webpack.config.js --watch",
|
30
|
-
"docs": "node ./node_modules/@cocreate/docs/src/index.js",
|
31
|
-
"hosting": "node ./node_modules/@cocreate/hosting/src/index.js"
|
32
|
-
},
|
33
|
-
"repository": {
|
34
|
-
"type": "git",
|
35
|
-
"url": "git+https://github.com/CoCreate-app/CoCreate-text.git"
|
36
|
-
},
|
37
|
-
"author": "CoCreate LLC",
|
38
|
-
"license": "SEE LICENSE",
|
39
|
-
"bugs": {
|
40
|
-
"url": "https://github.com/CoCreate-app/CoCreate-text/issues"
|
41
|
-
},
|
42
|
-
"homepage": "https://cocreate.app/docs/text",
|
43
|
-
"funding": {
|
44
|
-
"type": "GitHub Sponsors ❤",
|
45
|
-
"url": "https://github.com/sponsors/CoCreate-app"
|
46
|
-
},
|
47
|
-
"main": "./src/index.js",
|
48
|
-
"devDependencies": {
|
49
|
-
"@babel/core": "^7.9.6",
|
50
|
-
"@babel/preset-env": "^7.9.6",
|
51
|
-
"babel-loader": "^8.1.0",
|
52
|
-
"clean-webpack-plugin": "^3.0.0",
|
53
|
-
"file-loader": "^6.2.0",
|
54
|
-
"mini-css-extract-plugin": "^1.5.0",
|
55
|
-
"style-loader": "^3.3.1",
|
56
|
-
"terser-webpack-plugin": "^5.1.1",
|
57
|
-
"webpack": "^5.24.4",
|
58
|
-
"webpack-cli": "^4.5.0",
|
59
|
-
"webpack-log": "^3.0.1"
|
60
|
-
},
|
61
|
-
"dependencies": {
|
62
|
-
"@cocreate/actions": "^1.8.
|
63
|
-
"@cocreate/crdt": "^1.18.
|
64
|
-
"@cocreate/crud-client": "^1.21.
|
65
|
-
"@cocreate/cursors": "^1.16.
|
66
|
-
"@cocreate/docs": "^1.7.
|
67
|
-
"@cocreate/hosting": "^1.10.
|
68
|
-
"@cocreate/observer": "^1.
|
69
|
-
"@cocreate/selection": "^1.6.
|
70
|
-
"@cocreate/utils": "^1.20.
|
71
|
-
"@cocreate/uuid": "^1.4.
|
72
|
-
}
|
73
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@cocreate/text",
|
3
|
+
"version": "1.20.13",
|
4
|
+
"description": "A simple text component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
5
|
+
"keywords": [
|
6
|
+
"text",
|
7
|
+
"cocreate",
|
8
|
+
"low-code-framework",
|
9
|
+
"no-code-framework",
|
10
|
+
"cocreatejs",
|
11
|
+
"cocreatejs-component",
|
12
|
+
"cocreate-framework",
|
13
|
+
"no-code",
|
14
|
+
"low-code",
|
15
|
+
"collaborative-framework",
|
16
|
+
"realtime",
|
17
|
+
"realtime-framework",
|
18
|
+
"collaboration",
|
19
|
+
"shared-editing",
|
20
|
+
"html5-framework",
|
21
|
+
"javascript-framework"
|
22
|
+
],
|
23
|
+
"publishConfig": {
|
24
|
+
"access": "public"
|
25
|
+
},
|
26
|
+
"scripts": {
|
27
|
+
"start": "npx webpack --config webpack.config.js",
|
28
|
+
"build": "NODE_ENV=production npx webpack --config webpack.config.js",
|
29
|
+
"dev": "npx webpack --config webpack.config.js --watch",
|
30
|
+
"docs": "node ./node_modules/@cocreate/docs/src/index.js",
|
31
|
+
"hosting": "node ./node_modules/@cocreate/hosting/src/index.js"
|
32
|
+
},
|
33
|
+
"repository": {
|
34
|
+
"type": "git",
|
35
|
+
"url": "git+https://github.com/CoCreate-app/CoCreate-text.git"
|
36
|
+
},
|
37
|
+
"author": "CoCreate LLC",
|
38
|
+
"license": "SEE LICENSE",
|
39
|
+
"bugs": {
|
40
|
+
"url": "https://github.com/CoCreate-app/CoCreate-text/issues"
|
41
|
+
},
|
42
|
+
"homepage": "https://cocreate.app/docs/text",
|
43
|
+
"funding": {
|
44
|
+
"type": "GitHub Sponsors ❤",
|
45
|
+
"url": "https://github.com/sponsors/CoCreate-app"
|
46
|
+
},
|
47
|
+
"main": "./src/index.js",
|
48
|
+
"devDependencies": {
|
49
|
+
"@babel/core": "^7.9.6",
|
50
|
+
"@babel/preset-env": "^7.9.6",
|
51
|
+
"babel-loader": "^8.1.0",
|
52
|
+
"clean-webpack-plugin": "^3.0.0",
|
53
|
+
"file-loader": "^6.2.0",
|
54
|
+
"mini-css-extract-plugin": "^1.5.0",
|
55
|
+
"style-loader": "^3.3.1",
|
56
|
+
"terser-webpack-plugin": "^5.1.1",
|
57
|
+
"webpack": "^5.24.4",
|
58
|
+
"webpack-cli": "^4.5.0",
|
59
|
+
"webpack-log": "^3.0.1"
|
60
|
+
},
|
61
|
+
"dependencies": {
|
62
|
+
"@cocreate/actions": "^1.8.12",
|
63
|
+
"@cocreate/crdt": "^1.18.11",
|
64
|
+
"@cocreate/crud-client": "^1.21.5",
|
65
|
+
"@cocreate/cursors": "^1.16.11",
|
66
|
+
"@cocreate/docs": "^1.7.13",
|
67
|
+
"@cocreate/hosting": "^1.10.5",
|
68
|
+
"@cocreate/observer": "^1.8.0",
|
69
|
+
"@cocreate/selection": "^1.6.10",
|
70
|
+
"@cocreate/utils": "^1.20.10",
|
71
|
+
"@cocreate/uuid": "^1.4.11"
|
72
|
+
}
|
73
|
+
}
|
package/release.config.js
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
-
module.exports = {
|
2
|
-
dryRun: false,
|
3
|
-
branches: ["master"],
|
4
|
-
plugins: [
|
5
|
-
"@semantic-release/commit-analyzer",
|
6
|
-
"@semantic-release/release-notes-generator",
|
7
|
-
[
|
8
|
-
"@semantic-release/changelog",
|
9
|
-
{
|
10
|
-
changelogFile: "CHANGELOG.md",
|
11
|
-
},
|
12
|
-
],
|
13
|
-
"@semantic-release/npm",
|
14
|
-
"@semantic-release/github",
|
15
|
-
[
|
16
|
-
"@semantic-release/git",
|
17
|
-
{
|
18
|
-
assets: ["CHANGELOG.md", "package.json"],
|
19
|
-
},
|
20
|
-
],
|
21
|
-
],
|
1
|
+
module.exports = {
|
2
|
+
dryRun: false,
|
3
|
+
branches: ["master"],
|
4
|
+
plugins: [
|
5
|
+
"@semantic-release/commit-analyzer",
|
6
|
+
"@semantic-release/release-notes-generator",
|
7
|
+
[
|
8
|
+
"@semantic-release/changelog",
|
9
|
+
{
|
10
|
+
changelogFile: "CHANGELOG.md",
|
11
|
+
},
|
12
|
+
],
|
13
|
+
"@semantic-release/npm",
|
14
|
+
"@semantic-release/github",
|
15
|
+
[
|
16
|
+
"@semantic-release/git",
|
17
|
+
{
|
18
|
+
assets: ["CHANGELOG.md", "package.json"],
|
19
|
+
},
|
20
|
+
],
|
21
|
+
],
|
22
22
|
};
|