@cocreate/server-side-render 1.3.40 → 1.3.42

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.
@@ -42,19 +42,42 @@ jobs:
42
42
  new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
43
43
  new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
44
44
 
45
- docs:
46
- runs-on: ubuntu-latest
47
- steps:
48
- - name: Checkout
49
- uses: actions/checkout@v3
50
- - name: setup nodejs
51
- uses: actions/setup-node@v3
52
- with:
53
- node-version: 16
54
- - name: update documentation
55
- uses: CoCreate-app/CoCreate-docs@master
56
- env:
57
- organization_id: ${{ secrets.COCREATE_ORGANIZATION_ID }}
58
- key: ${{ secrets.COCREATE_KEY }}
59
- host: ${{ secrets.COCREATE_HOST }}
45
+ upload:
46
+ runs-on: ubuntu-latest
47
+
48
+ steps:
49
+ - name: Checkout
50
+ uses: actions/checkout@v3
51
+
52
+ - name: Setup Node.js
53
+ uses: actions/setup-node@v3
54
+ with:
55
+ node-version: 16
56
+
57
+ - name: Get Environment Variables
58
+ run: |
59
+ echo "organization_id=${{ secrets.COCREATE_ORGANIZATION_ID }}" >> $GITHUB_ENV
60
+ echo "key=${{ secrets.COCREATE_KEY }}" >> $GITHUB_ENV
61
+ echo "host=${{ secrets.COCREATE_HOST }}" >> $GITHUB_ENV
62
+
63
+ - name: Install @cocreate/cli
64
+ run: npm install -g @cocreate/cli
65
+
66
+ - name: CoCreate CLI Upload
67
+ run: coc upload
60
68
 
69
+ # docs:
70
+ # runs-on: ubuntu-latest
71
+ # steps:
72
+ # - name: Checkout
73
+ # uses: actions/checkout@v3
74
+ # - name: setup nodejs
75
+ # uses: actions/setup-node@v3
76
+ # with:
77
+ # node-version: 16
78
+ # - name: update documentation
79
+ # uses: CoCreate-app/CoCreate-docs@master
80
+ # env:
81
+ # organization_id: ${{ secrets.COCREATE_ORGANIZATION_ID }}
82
+ # key: ${{ secrets.COCREATE_KEY }}
83
+ # host: ${{ secrets.COCREATE_HOST }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.3.42](https://github.com/CoCreate-app/CoCreate-server-side-render/compare/v1.3.41...v1.3.42) (2023-06-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([853a95b](https://github.com/CoCreate-app/CoCreate-server-side-render/commit/853a95b5f595df4f0f79b95bf4d34e98431397ec))
7
+
8
+ ## [1.3.41](https://github.com/CoCreate-app/CoCreate-server-side-render/compare/v1.3.40...v1.3.41) (2023-06-10)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([2ba6d5f](https://github.com/CoCreate-app/CoCreate-server-side-render/commit/2ba6d5f76f6a1714ed58bfd6572b83dfc61b80a6))
14
+
1
15
  ## [1.3.40](https://github.com/CoCreate-app/CoCreate-server-side-render/compare/v1.3.39...v1.3.40) (2023-06-04)
2
16
 
3
17
 
@@ -1,9 +1,7 @@
1
1
  module.exports = {
2
- "config": {
3
- "key": "2061acef-0451-4545-f754-60cf8160",
4
- "organization_id": "5ff747727005da1c272740ab",
5
- "host": "general.cocreate.app"
6
- },
2
+ "organization_id": "",
3
+ "key": "",
4
+ "host": "",
7
5
  "sources": [
8
6
  {
9
7
  "collection": "files",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/server-side-render",
3
- "version": "1.3.40",
3
+ "version": "1.3.42",
4
4
  "description": "A simple server-side-render component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "server-side-render",
@@ -27,8 +27,7 @@
27
27
  "start": "npx webpack --config webpack.config.js",
28
28
  "build": "NODE_ENV=production npx webpack --config webpack.config.js",
29
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"
30
+ "postinstall": "node ./node_modules/@cocreate/cli/check-coc.js"
32
31
  },
33
32
  "repository": {
34
33
  "type": "git",
@@ -46,22 +45,10 @@
46
45
  },
47
46
  "main": "./src/index.js",
48
47
  "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"
48
+ "@cocreate/cli": "^1.29.3"
60
49
  },
61
50
  "dependencies": {
62
- "@cocreate/docs": "^1.7.15",
63
- "@cocreate/hosting": "^1.10.8",
64
- "@cocreate/utils": "^1.21.1",
51
+ "@cocreate/utils": "^1.21.4",
65
52
  "node-html-parser": "^6.1.4"
66
53
  }
67
54
  }