@cocreate/text 1.20.13 → 1.20.15
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/workflows/automated.yml +6 -2
- package/.github/workflows/manual.yml +38 -38
- package/CHANGELOG.md +15 -0
- package/CoCreate.config.js +3 -3
- package/package.json +73 -73
@@ -36,7 +36,7 @@ jobs:
|
|
36
36
|
@semantic-release/git
|
37
37
|
@semantic-release/github
|
38
38
|
env:
|
39
|
-
GITHUB_TOKEN: "${{ secrets.
|
39
|
+
GITHUB_TOKEN: "${{ secrets.GITHUB }}"
|
40
40
|
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
|
41
41
|
outputs:
|
42
42
|
new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
|
@@ -90,6 +90,10 @@ jobs:
|
|
90
90
|
uses: actions/setup-node@v3
|
91
91
|
with:
|
92
92
|
node-version: 16
|
93
|
-
|
94
93
|
- name: update documentation
|
95
94
|
uses: CoCreate-app/CoCreate-docs@master
|
95
|
+
env:
|
96
|
+
organization_id: ${{ secrets.COCREATE_ORGANIZATION_ID }}
|
97
|
+
key: ${{ secrets.COCREATE_KEY }}
|
98
|
+
host: ${{ secrets.COCREATE_HOST }}
|
99
|
+
|
@@ -1,44 +1,44 @@
|
|
1
1
|
name: Manual Workflow
|
2
2
|
on:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
3
|
+
workflow_dispatch:
|
4
|
+
inputs:
|
5
|
+
invalidations:
|
6
|
+
description: |
|
7
|
+
If set to 'true', invalidates previous upload.
|
8
|
+
default: "true"
|
9
|
+
required: true
|
10
10
|
|
11
11
|
jobs:
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
cdn:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
env:
|
15
|
+
DRY_RUN: ${{ github.event.inputs.dry_run }}
|
16
|
+
GITHUB_TOKEN: "${{ secrets.GITHUB }}"
|
17
|
+
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
19
|
+
steps:
|
20
|
+
- name: Checkout
|
21
|
+
uses: actions/checkout@v3
|
22
|
+
- name: setup nodejs
|
23
|
+
uses: actions/setup-node@v3
|
24
|
+
with:
|
25
|
+
node-version: 16
|
26
|
+
- name: yarn install
|
27
|
+
run: >
|
28
|
+
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
|
29
|
+
.npmrc
|
30
30
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
31
|
+
yarn install
|
32
|
+
- name: yarn build
|
33
|
+
run: yarn build
|
34
|
+
- name: upload latest bundle
|
35
|
+
uses: CoCreate-app/CoCreate-s3@master
|
36
|
+
with:
|
37
|
+
aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
|
38
|
+
aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
|
39
|
+
distributionId: "${{ secrets.DISTRIBUTION_ID }}"
|
40
|
+
bucket: testcrudbucket
|
41
|
+
source: ./dist
|
42
|
+
destination: /text/latest
|
43
|
+
acl: public-read
|
44
|
+
invalidations: ${{ github.event.inputs.invalidations }}
|
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## [1.20.15](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.14...v1.20.15) (2023-06-04)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Refactor CoCreate.config.js to remove hard-coded credentials ([c775a5f](https://github.com/CoCreate-app/CoCreate-text/commit/c775a5f1650e1508e26c385aa43e2739b8bff603))
|
7
|
+
|
8
|
+
## [1.20.14](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.13...v1.20.14) (2023-06-04)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* replaced secert GITHUB_TOKEN with GITHUB ([88104b5](https://github.com/CoCreate-app/CoCreate-text/commit/88104b513ce340cff27492ee1afee833577d1ee0))
|
14
|
+
* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([dc04f9c](https://github.com/CoCreate-app/CoCreate-text/commit/dc04f9c7ce5b33a6b6465c7000e8e102986fb5b5))
|
15
|
+
|
1
16
|
## [1.20.13](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.12...v1.20.13) (2023-06-04)
|
2
17
|
|
3
18
|
|
package/CoCreate.config.js
CHANGED
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.8.
|
69
|
-
"@cocreate/selection": "^1.6.
|
70
|
-
"@cocreate/utils": "^1.
|
71
|
-
"@cocreate/uuid": "^1.4.
|
72
|
-
}
|
73
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@cocreate/text",
|
3
|
+
"version": "1.20.15",
|
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.14",
|
63
|
+
"@cocreate/crdt": "^1.18.13",
|
64
|
+
"@cocreate/crud-client": "^1.21.8",
|
65
|
+
"@cocreate/cursors": "^1.16.13",
|
66
|
+
"@cocreate/docs": "^1.7.15",
|
67
|
+
"@cocreate/hosting": "^1.10.8",
|
68
|
+
"@cocreate/observer": "^1.8.3",
|
69
|
+
"@cocreate/selection": "^1.6.12",
|
70
|
+
"@cocreate/utils": "^1.21.1",
|
71
|
+
"@cocreate/uuid": "^1.4.13"
|
72
|
+
}
|
73
|
+
}
|