@todesktop/cli 0.27.2 → 0.28.2

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.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@todesktop/cli",
7
- "version": "0.27.2",
7
+ "version": "0.28.2",
8
8
  "license": "MIT",
9
9
  "author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
10
10
  "homepage": "https://todesktop.com/cli",
@@ -19,10 +19,10 @@
19
19
  },
20
20
  "scripts": {
21
21
  "dev": "cp-cli dev.env .env && pastel dev",
22
- "build": "cross-env NODE_ENV=production pastel build && cp-cli prod.env .env",
22
+ "build": "cross-env NODE_ENV=production pastel build && cp-cli prod.env .env && cp node_modules/pastel/boot.js build/boot.js && sed -i'.bak' 's@pastel\\/boot@.\\/boot@g' build/cli.js",
23
23
  "lint": "eslint .",
24
24
  "lint--fix": "eslint . --fix",
25
- "release": "npm run build && npx np --no-tests --tag=latest",
25
+ "release": "npm run build && npx np --tag=latest",
26
26
  "release-beta": "npm run build && npx np --any-branch --no-tests --tag=beta",
27
27
  "test": "npm run build && ava",
28
28
  "test--watch": "npm test -- --watch"
@@ -43,9 +43,11 @@
43
43
  "axios": "^0.21.1",
44
44
  "better-ajv-errors": "^0.6.7",
45
45
  "bunyan": "^1.8.14",
46
+ "camelcase-keys": "^5.2.0",
46
47
  "chalk": "^4.1.0",
47
48
  "conf": "^7.1.2",
48
49
  "date-fns": "^2.28.0",
50
+ "decamelize": "^1.2.0",
49
51
  "del": "^6.0.0",
50
52
  "dotenv": "^8.2.0",
51
53
  "du": "^1.0.0",
@@ -65,7 +67,6 @@
65
67
  "latest-version": "^5.1.0",
66
68
  "lodash.throttle": "^4.1.1",
67
69
  "parse-author": "^2.0.0",
68
- "pastel": "1.1.1",
69
70
  "pkg-up": "^3.1.0",
70
71
  "pretty-bytes": "^5.4.1",
71
72
  "prop-types": "^15.7.2",
@@ -74,7 +75,8 @@
74
75
  "s3-upload-stream": "^1.0.7",
75
76
  "semver": "^7.3.2",
76
77
  "uuid": "^8.3.1",
77
- "xdg-basedir": "^4.0.0"
78
+ "xdg-basedir": "^4.0.0",
79
+ "yargs": "^15.4.1"
78
80
  },
79
81
  "devDependencies": {
80
82
  "@ava/babel": "^1.0.1",
@@ -103,6 +105,7 @@
103
105
  "husky": "^4.3.0",
104
106
  "is-ci": "^2.0.0",
105
107
  "lint-staged": "^10.2.11",
108
+ "pastel": "^1.1.1",
106
109
  "prettier": "^2.1.2",
107
110
  "proxyquire": "^2.1.3",
108
111
  "sinon": "^9.0.3"
@@ -129,5 +132,15 @@
129
132
  "hooks": {
130
133
  "pre-commit": "lint-staged"
131
134
  }
135
+ },
136
+ "overrides": {
137
+ "pastel": {
138
+ "parcel-bundler": {
139
+ "deasync": "0.1.24"
140
+ }
141
+ }
142
+ },
143
+ "resolutions": {
144
+ "pastel/parcel-bundler/deasync": "0.1.24"
132
145
  }
133
146
  }