@cocreate/utils 1.21.1 → 1.21.3

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.
@@ -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
+
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.21.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.2...v1.21.3) (2023-06-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Refactor CoCreate.config.js to remove hard-coded credentials ([d8c1ab0](https://github.com/CoCreate-app/CoCreate-utils/commit/d8c1ab0ff26f6377216f95dbfd57e5a2d966d05d))
7
+
8
+ ## [1.21.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.1...v1.21.2) (2023-06-04)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([b625b44](https://github.com/CoCreate-app/CoCreate-utils/commit/b625b447c937545abc72e5e849c3f4f0beea8966))
14
+
1
15
  ## [1.21.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.0...v1.21.1) (2023-06-04)
2
16
 
3
17
 
@@ -1,8 +1,8 @@
1
1
  module.exports = {
2
2
  "config": {
3
- "organization_id": "5ff747727005da1c272740ab",
4
- "key": "2061acef-0451-4545-f754-60cf8160",
5
- "host": "general.cocreate.app"
3
+ "organization_id": "",
4
+ "key": "",
5
+ "host": ""
6
6
  },
7
7
  "sources": [
8
8
  {
package/package.json CHANGED
@@ -1,64 +1,64 @@
1
- {
2
- "name": "@cocreate/utils",
3
- "version": "1.21.1",
4
- "description": "A simple utils component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
- "keywords": [
6
- "utils",
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-utils.git"
36
- },
37
- "author": "CoCreate LLC",
38
- "license": "MIT",
39
- "bugs": {
40
- "url": "https://github.com/CoCreate-app/CoCreate-utils/issues"
41
- },
42
- "homepage": "https://cocreate.app/docs/utils",
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/docs": "^1.7.13"
63
- }
64
- }
1
+ {
2
+ "name": "@cocreate/utils",
3
+ "version": "1.21.3",
4
+ "description": "A simple utils component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
+ "keywords": [
6
+ "utils",
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-utils.git"
36
+ },
37
+ "author": "CoCreate LLC",
38
+ "license": "MIT",
39
+ "bugs": {
40
+ "url": "https://github.com/CoCreate-app/CoCreate-utils/issues"
41
+ },
42
+ "homepage": "https://cocreate.app/docs/utils",
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/docs": "^1.7.15"
63
+ }
64
+ }