@cocreate/selection 1.9.2 → 1.9.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.
@@ -41,30 +41,4 @@ jobs:
41
41
  outputs:
42
42
  new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
43
43
  new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
44
- upload:
45
- runs-on: ubuntu-latest
46
- needs: release
47
- if: needs.release.outputs.new_release_published == 'true'
48
- env:
49
- VERSION: "${{ needs.release.outputs.new_release_version }}"
50
- steps:
51
- - name: Checkout
52
- uses: actions/checkout@v3
53
- - name: Setup Node.js
54
- uses: actions/setup-node@v3
55
- with:
56
- node-version: 16
57
- - name: Set npm registry auth
58
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
59
- - name: Install dependencies
60
- run: yarn install
61
- - name: Build
62
- run: yarn build
63
- - name: Set Environment Variables
64
- run: |
65
- echo "organization_id=${{ secrets.COCREATE_ORGANIZATION_ID }}" >> $GITHUB_ENV
66
- echo "key=${{ secrets.COCREATE_KEY }}" >> $GITHUB_ENV
67
- echo "host=${{ secrets.COCREATE_HOST }}" >> $GITHUB_ENV
68
- - name: CoCreate Upload
69
- run: coc upload
70
44
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.9.3](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.9.2...v1.9.3) (2023-10-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump cocreate dependency versions ([5427ce9](https://github.com/CoCreate-app/CoCreate-selection/commit/5427ce91e6eecd6964680f80a93cf113e2455379))
7
+ * bump dependencies ([4f504bc](https://github.com/CoCreate-app/CoCreate-selection/commit/4f504bc3d995c0b1d8601b25cc5b22b0c894fcd1))
8
+
1
9
  ## [1.9.2](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.9.1...v1.9.2) (2023-09-18)
2
10
 
3
11
 
@@ -1,24 +1,24 @@
1
- module.exports = {
2
- "organization_id": "",
3
- "key": "",
4
- "host": "",
5
- "sources": [
6
- {
7
- "array": "files",
8
- "object": {
9
- "_id": "637ca63950234ef1671ce331",
10
- "name": "index.html",
11
- "path": "/docs/selection",
12
- "pathname": "/docs/selection/index.html",
13
- "src": "{{./docs/index.html}}",
14
- "host": [
15
- "*",
16
- "general.cocreate.app"
17
- ],
18
- "directory": "selection",
19
- "content-type": "{{content-type}}",
20
- "public": "true"
21
- }
22
- }
23
- ]
24
- }
1
+ module.exports = {
2
+ "organization_id": "",
3
+ "key": "",
4
+ "host": "",
5
+ "sources": [
6
+ {
7
+ "array": "files",
8
+ "object": {
9
+ "_id": "637ca63950234ef1671ce331",
10
+ "name": "index.html",
11
+ "path": "/docs/selection",
12
+ "pathname": "/docs/selection/index.html",
13
+ "src": "{{./docs/index.html}}",
14
+ "host": [
15
+ "*",
16
+ "general.cocreate.app"
17
+ ],
18
+ "directory": "selection",
19
+ "content-type": "{{content-type}}",
20
+ "public": "true"
21
+ }
22
+ }
23
+ ]
24
+ };
package/docs/index.html CHANGED
@@ -272,7 +272,6 @@
272
272
  </div>
273
273
  </div>
274
274
  </main>
275
- <script src="/apikey.js"></script>
276
275
  <script src="https://CoCreate.app/dist/CoCreate.js"></script>
277
276
  </body>
278
277
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/selection",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
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",
@@ -58,6 +58,6 @@
58
58
  "webpack-log": "^3.0.1"
59
59
  },
60
60
  "dependencies": {
61
- "@cocreate/utils": "^1.24.1"
61
+ "@cocreate/utils": "^1.25.1"
62
62
  }
63
63
  }