@cocreate/selection 1.6.23 → 1.6.25

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.6.25](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.6.24...v1.6.25) (2023-06-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * testing workflow ([0c1fb46](https://github.com/CoCreate-app/CoCreate-selection/commit/0c1fb46d393e64ffb539e175c4820d5bf209777b))
7
+
8
+ ## [1.6.24](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.6.23...v1.6.24) (2023-06-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * testing workflow ([7d70eb6](https://github.com/CoCreate-app/CoCreate-selection/commit/7d70eb6644d6d07ee6d4edb0fb0c623657beb32f))
14
+
1
15
  ## [1.6.23](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.6.22...v1.6.23) (2023-06-11)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/selection",
3
- "version": "1.6.23",
3
+ "version": "1.6.25",
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",
@@ -27,7 +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
- "postinstall": "node $PWD/node_modules/@cocreate/cli/check-coc.js"
30
+ "postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\""
31
31
  },
32
32
  "repository": {
33
33
  "type": "git",
@@ -58,7 +58,7 @@
58
58
  "webpack-log": "^3.0.1"
59
59
  },
60
60
  "dependencies": {
61
- "@cocreate/cli": "^1.33.4",
62
- "@cocreate/utils": "^1.21.9"
61
+ "@cocreate/cli": "^1.33.6",
62
+ "@cocreate/utils": "^1.21.12"
63
63
  }
64
64
  }