@cocreate/text 1.20.15 → 1.20.16
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 +38 -15
- package/CHANGELOG.md +7 -0
- package/CoCreate.config.js +3 -5
- package/package.json +12 -12
@@ -81,19 +81,42 @@ jobs:
|
|
81
81
|
destination: /text/latest
|
82
82
|
acl: public-read
|
83
83
|
invalidations: true
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
84
|
+
upload:
|
85
|
+
runs-on: ubuntu-latest
|
86
|
+
|
87
|
+
steps:
|
88
|
+
- name: Checkout
|
89
|
+
uses: actions/checkout@v3
|
90
|
+
|
91
|
+
- name: Setup Node.js
|
92
|
+
uses: actions/setup-node@v3
|
93
|
+
with:
|
94
|
+
node-version: 16
|
95
|
+
|
96
|
+
- name: Get Environment Variables
|
97
|
+
run: |
|
98
|
+
echo "organization_id=${{ secrets.COCREATE_ORGANIZATION_ID }}" >> $GITHUB_ENV
|
99
|
+
echo "key=${{ secrets.COCREATE_KEY }}" >> $GITHUB_ENV
|
100
|
+
echo "host=${{ secrets.COCREATE_HOST }}" >> $GITHUB_ENV
|
101
|
+
|
102
|
+
- name: Install @cocreate/cli
|
103
|
+
run: npm install -g @cocreate/cli
|
104
|
+
|
105
|
+
- name: CoCreate CLI Upload
|
106
|
+
run: coc upload
|
99
107
|
|
108
|
+
# docs:
|
109
|
+
# runs-on: ubuntu-latest
|
110
|
+
# steps:
|
111
|
+
# - name: Checkout
|
112
|
+
# uses: actions/checkout@v3
|
113
|
+
# - name: setup nodejs
|
114
|
+
# uses: actions/setup-node@v3
|
115
|
+
# with:
|
116
|
+
# node-version: 16
|
117
|
+
# - name: update documentation
|
118
|
+
# uses: CoCreate-app/CoCreate-docs@master
|
119
|
+
# env:
|
120
|
+
# organization_id: ${{ secrets.COCREATE_ORGANIZATION_ID }}
|
121
|
+
# key: ${{ secrets.COCREATE_KEY }}
|
122
|
+
# host: ${{ secrets.COCREATE_HOST }}
|
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [1.20.16](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.15...v1.20.16) (2023-06-10)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([dea7a5b](https://github.com/CoCreate-app/CoCreate-text/commit/dea7a5ba1c17cc83b7403ef0a5c578d0a8306b63))
|
7
|
+
|
1
8
|
## [1.20.15](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.14...v1.20.15) (2023-06-04)
|
2
9
|
|
3
10
|
|
package/CoCreate.config.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@cocreate/text",
|
3
|
-
"version": "1.20.
|
3
|
+
"version": "1.20.16",
|
4
4
|
"description": "A simple text component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
5
5
|
"keywords": [
|
6
6
|
"text",
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"build": "NODE_ENV=production npx webpack --config webpack.config.js",
|
29
29
|
"dev": "npx webpack --config webpack.config.js --watch",
|
30
30
|
"docs": "node ./node_modules/@cocreate/docs/src/index.js",
|
31
|
-
"
|
31
|
+
"postinstall": "node ./node_modules/@cocreate/cli/check-coc.js"
|
32
32
|
},
|
33
33
|
"repository": {
|
34
34
|
"type": "git",
|
@@ -48,6 +48,7 @@
|
|
48
48
|
"devDependencies": {
|
49
49
|
"@babel/core": "^7.9.6",
|
50
50
|
"@babel/preset-env": "^7.9.6",
|
51
|
+
"@cocreate/cli": "^1.29.3",
|
51
52
|
"babel-loader": "^8.1.0",
|
52
53
|
"clean-webpack-plugin": "^3.0.0",
|
53
54
|
"file-loader": "^6.2.0",
|
@@ -59,15 +60,14 @@
|
|
59
60
|
"webpack-log": "^3.0.1"
|
60
61
|
},
|
61
62
|
"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.
|
67
|
-
"@cocreate/
|
68
|
-
"@cocreate/
|
69
|
-
"@cocreate/
|
70
|
-
"@cocreate/
|
71
|
-
"@cocreate/uuid": "^1.4.13"
|
63
|
+
"@cocreate/actions": "^1.8.18",
|
64
|
+
"@cocreate/crdt": "^1.18.15",
|
65
|
+
"@cocreate/crud-client": "^1.21.10",
|
66
|
+
"@cocreate/cursors": "^1.16.15",
|
67
|
+
"@cocreate/docs": "^1.8.13",
|
68
|
+
"@cocreate/observer": "^1.8.5",
|
69
|
+
"@cocreate/selection": "^1.6.14",
|
70
|
+
"@cocreate/utils": "^1.21.3",
|
71
|
+
"@cocreate/uuid": "^1.4.15"
|
72
72
|
}
|
73
73
|
}
|