@cocreate/selection 1.6.14 → 1.6.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -81,19 +81,42 @@ jobs:
81
81
  destination: /selection/latest
82
82
  acl: public-read
83
83
  invalidations: true
84
- docs:
85
- runs-on: ubuntu-latest
86
- steps:
87
- - name: Checkout
88
- uses: actions/checkout@v3
89
- - name: setup nodejs
90
- uses: actions/setup-node@v3
91
- with:
92
- node-version: 16
93
- - name: update documentation
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 }}
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.6.15](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.6.14...v1.6.15) (2023-06-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([4d06176](https://github.com/CoCreate-app/CoCreate-selection/commit/4d061763f6f1343eb3dd7d807b4f820243991e53))
7
+
1
8
  ## [1.6.14](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.6.13...v1.6.14) (2023-06-04)
2
9
 
3
10
 
@@ -1,9 +1,7 @@
1
1
  module.exports = {
2
- "config": {
3
- "organization_id": "",
4
- "key": "",
5
- "host": ""
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/selection",
3
- "version": "1.6.14",
3
+ "version": "1.6.15",
4
4
  "description": "A simple selection component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "selection",
@@ -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
- "hosting": "node ./node_modules/@cocreate/hosting/src/index.js"
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,8 +60,7 @@
59
60
  "webpack-log": "^3.0.1"
60
61
  },
61
62
  "dependencies": {
62
- "@cocreate/docs": "^1.7.15",
63
- "@cocreate/hosting": "^1.10.8",
64
- "@cocreate/utils": "^1.21.1"
63
+ "@cocreate/docs": "^1.8.13",
64
+ "@cocreate/utils": "^1.21.3"
65
65
  }
66
66
  }