@eik/cli 2.0.16 → 2.0.20

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ## [2.0.20](https://github.com/eik-lib/cli/compare/v2.0.19...v2.0.20) (2021-12-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency date-fns to v2.28.0 ([0c11b62](https://github.com/eik-lib/cli/commit/0c11b621390f8806c1e26f67ff6edd41d8a12da9))
7
+
8
+ ## [2.0.19](https://github.com/eik-lib/cli/compare/v2.0.18...v2.0.19) (2021-12-24)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency yargs to v17.3.1 ([62b88f4](https://github.com/eik-lib/cli/commit/62b88f4a8b7e389253948fe898fb664ff3061cbb))
14
+
15
+ ## [2.0.18](https://github.com/eik-lib/cli/compare/v2.0.17...v2.0.18) (2021-11-30)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **deps:** update dependency yargs to v17.3.0 ([2a27ae2](https://github.com/eik-lib/cli/commit/2a27ae2e9a64258aa36c7eed96fb2b2cb2220234))
21
+
22
+ ## [2.0.17](https://github.com/eik-lib/cli/compare/v2.0.16...v2.0.17) (2021-11-30)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **deps:** update dependency date-fns to v2.27.0 ([ce995a5](https://github.com/eik-lib/cli/commit/ce995a569207fb98633ef94bb26689401f8d74dd))
28
+
1
29
  ## [2.0.16](https://github.com/eik-lib/cli/compare/v2.0.15...v2.0.16) (2021-11-19)
2
30
 
3
31
 
@@ -11,7 +11,7 @@ const chalk = require('chalk');
11
11
  function readableBytes(bytes) {
12
12
  const i = Math.floor(Math.log(bytes) / Math.log(1024)),
13
13
  sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
14
- return (bytes / Math.pow(1024, i)).toFixed(2) * 1 + ' ' + sizes[i];
14
+ return (bytes / 1024 ** i).toFixed(2) * 1 + ' ' + sizes[i];
15
15
  }
16
16
 
17
17
  class File {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/cli",
3
- "version": "2.0.16",
3
+ "version": "2.0.20",
4
4
  "description": "Cli tool for publishing assets",
5
5
  "main": "./classes/index.js",
6
6
  "bin": {
@@ -38,46 +38,42 @@
38
38
  "bytes": "3.1.1",
39
39
  "chalk": "4.1.2",
40
40
  "copy": "0.3.2",
41
- "date-fns": "2.26.0",
41
+ "date-fns": "2.28.0",
42
42
  "form-data": "4.0.0",
43
43
  "glob": "7.2.0",
44
44
  "gzip-size": "6.0.0",
45
45
  "make-dir": "3.1.0",
46
46
  "node-fetch": "2.6.6",
47
47
  "ora": "5.4.1",
48
- "pkg-dir": "5.0.0",
48
+ "pkg-dir": "6.0.1",
49
49
  "read-pkg-up": "9.0.0",
50
50
  "rimraf": "3.0.2",
51
51
  "semver": "7.3.5",
52
52
  "ssri": "8.0.1",
53
53
  "tar": "6.1.11",
54
54
  "temp-dir": "2.0.0",
55
- "yargs": "16.2.0",
56
- "yargs-parser": "20.2.9"
55
+ "yargs": "17.3.1",
56
+ "yargs-parser": "21.0.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@eik/core": "1.2.27",
59
+ "@eik/core": "1.2.28",
60
60
  "@eik/service": "1.2.98",
61
- "@semantic-release/changelog": "5.0.1",
62
- "@semantic-release/commit-analyzer": "8.0.1",
63
- "@semantic-release/git": "9.0.1",
64
- "@semantic-release/github": "7.2.3",
65
- "@semantic-release/npm": "7.1.3",
66
- "@semantic-release/release-notes-generator": "9.0.3",
67
- "eslint": "7.32.0",
68
- "eslint-config-airbnb-base": "14.2.1",
61
+ "@semantic-release/changelog": "6.0.1",
62
+ "@semantic-release/git": "10.0.1",
63
+ "eslint": "8.5.0",
64
+ "eslint-config-airbnb-base": "15.0.0",
69
65
  "eslint-config-prettier": "8.3.0",
70
66
  "eslint-plugin-import": "2.25.3",
71
- "eslint-plugin-prettier": "3.4.1",
72
- "fastify": "3.23.1",
73
- "fastify-cors": "5.2.0",
74
- "fs-extra": "9.1.0",
75
- "prettier": "2.4.1",
76
- "puppeteer": "7.1.0",
67
+ "eslint-plugin-prettier": "4.0.0",
68
+ "fastify": "3.25.2",
69
+ "fastify-cors": "6.0.2",
70
+ "fs-extra": "10.0.0",
71
+ "prettier": "2.5.1",
72
+ "puppeteer": "12.0.1",
77
73
  "react": "17.0.2",
78
74
  "react-dom": "17.0.2",
79
- "semantic-release": "17.4.7",
80
- "semantic-release-slack-bot": "2.1.2",
81
- "tap": "14.11.0"
75
+ "semantic-release": "18.0.1",
76
+ "semantic-release-slack-bot": "3.2.0",
77
+ "tap": "15.1.5"
82
78
  }
83
79
  }