@cocreate/selection 1.6.12 → 1.6.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -36,7 +36,7 @@ jobs:
36
36
  @semantic-release/git
37
37
  @semantic-release/github
38
38
  env:
39
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
39
+ GITHUB_TOKEN: "${{ secrets.GITHUB }}"
40
40
  NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
41
41
  outputs:
42
42
  new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
@@ -1,44 +1,44 @@
1
1
  name: Manual Workflow
2
2
  on:
3
- workflow_dispatch:
4
- inputs:
5
- invalidations:
6
- description: |
7
- If set to 'true', invalidates previous upload.
8
- default: "true"
9
- required: true
3
+ workflow_dispatch:
4
+ inputs:
5
+ invalidations:
6
+ description: |
7
+ If set to 'true', invalidates previous upload.
8
+ default: "true"
9
+ required: true
10
10
 
11
11
  jobs:
12
- cdn:
13
- runs-on: ubuntu-latest
14
- env:
15
- DRY_RUN: ${{ github.event.inputs.dry_run }}
16
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
17
- NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
12
+ cdn:
13
+ runs-on: ubuntu-latest
14
+ env:
15
+ DRY_RUN: ${{ github.event.inputs.dry_run }}
16
+ GITHUB_TOKEN: "${{ secrets.GITHUB }}"
17
+ NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
18
18
 
19
- steps:
20
- - name: Checkout
21
- uses: actions/checkout@v3
22
- - name: setup nodejs
23
- uses: actions/setup-node@v3
24
- with:
25
- node-version: 16
26
- - name: yarn install
27
- run: >
28
- echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
29
- .npmrc
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v3
22
+ - name: setup nodejs
23
+ uses: actions/setup-node@v3
24
+ with:
25
+ node-version: 16
26
+ - name: yarn install
27
+ run: >
28
+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
29
+ .npmrc
30
30
 
31
- yarn install
32
- - name: yarn build
33
- run: yarn build
34
- - name: upload latest bundle
35
- uses: CoCreate-app/CoCreate-s3@master
36
- with:
37
- aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
38
- aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
39
- distributionId: "${{ secrets.DISTRIBUTION_ID }}"
40
- bucket: testcrudbucket
41
- source: ./dist
42
- destination: /selection/latest
43
- acl: public-read
44
- invalidations: ${{ github.event.inputs.invalidations }}
31
+ yarn install
32
+ - name: yarn build
33
+ run: yarn build
34
+ - name: upload latest bundle
35
+ uses: CoCreate-app/CoCreate-s3@master
36
+ with:
37
+ aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
38
+ aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
39
+ distributionId: "${{ secrets.DISTRIBUTION_ID }}"
40
+ bucket: testcrudbucket
41
+ source: ./dist
42
+ destination: /selection/latest
43
+ acl: public-read
44
+ invalidations: ${{ github.event.inputs.invalidations }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.6.13](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.6.12...v1.6.13) (2023-06-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * replaced secert GITHUB_TOKEN with GITHUB ([601eb95](https://github.com/CoCreate-app/CoCreate-selection/commit/601eb95ffcce05bd109630c9fdb9706d1365da11))
7
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([a13bb15](https://github.com/CoCreate-app/CoCreate-selection/commit/a13bb1562e2fd80528283d3a65b2839c8316c32c))
8
+
1
9
  ## [1.6.12](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.6.11...v1.6.12) (2023-06-04)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,66 +1,66 @@
1
- {
2
- "name": "@cocreate/selection",
3
- "version": "1.6.12",
4
- "description": "A simple selection component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
- "keywords": [
6
- "selection",
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-selection.git"
36
- },
37
- "author": "CoCreate LLC",
38
- "license": "SEE LICENSE",
39
- "bugs": {
40
- "url": "https://github.com/CoCreate-app/CoCreate-selection/issues"
41
- },
42
- "homepage": "https://cocreate.app/docs/selection",
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
- "@cocreate/hosting": "^1.10.5",
64
- "@cocreate/utils": "^1.20.10"
65
- }
66
- }
1
+ {
2
+ "name": "@cocreate/selection",
3
+ "version": "1.6.13",
4
+ "description": "A simple selection component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
+ "keywords": [
6
+ "selection",
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-selection.git"
36
+ },
37
+ "author": "CoCreate LLC",
38
+ "license": "SEE LICENSE",
39
+ "bugs": {
40
+ "url": "https://github.com/CoCreate-app/CoCreate-selection/issues"
41
+ },
42
+ "homepage": "https://cocreate.app/docs/selection",
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
+ "@cocreate/hosting": "^1.10.8",
64
+ "@cocreate/utils": "^1.21.1"
65
+ }
66
+ }