@oclif/core 1.0.11 → 1.1.0
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/CHANGELOG.md +7 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.1.0](https://github.com/oclif/core/compare/v1.0.11...v1.1.0) (2022-01-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add integration tests ([#339](https://github.com/oclif/core/issues/339)) ([2159c0b](https://github.com/oclif/core/commit/2159c0b970a0090f8bf21ff59e63dea1e788b5f9))
|
|
11
|
+
|
|
5
12
|
### [1.0.11](https://github.com/oclif/core/compare/v1.0.10...v1.0.11) (2021-12-17)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/core",
|
|
3
3
|
"description": "base library for oclif CLIs",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/core/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/linewrap": "^1.0.0",
|
|
9
9
|
"chalk": "^4.1.2",
|
|
10
10
|
"clean-stack": "^3.0.1",
|
|
11
|
-
"cli-ux": "6.0.
|
|
11
|
+
"cli-ux": "^6.0.6",
|
|
12
12
|
"debug": "^4.3.3",
|
|
13
13
|
"fs-extra": "^9.1.0",
|
|
14
14
|
"get-package-type": "^0.1.0",
|
|
@@ -34,14 +34,13 @@
|
|
|
34
34
|
"@types/fs-extra": "^9.0.13",
|
|
35
35
|
"@types/indent-string": "^4.0.1",
|
|
36
36
|
"@types/lodash": "^4.14.177",
|
|
37
|
-
"@types/lodash.template": "^4.5.0",
|
|
38
37
|
"@types/mocha": "^8.2.3",
|
|
39
38
|
"@types/nock": "^11.1.0",
|
|
40
39
|
"@types/node": "^15.14.9",
|
|
41
|
-
"@types/node-notifier": "^8.0.
|
|
40
|
+
"@types/node-notifier": "^8.0.2",
|
|
42
41
|
"@types/proxyquire": "^1.3.28",
|
|
43
|
-
"@types/read-pkg": "^5.1.0",
|
|
44
42
|
"@types/semver": "^7.3.9",
|
|
43
|
+
"@types/shelljs": "^0.8.10",
|
|
45
44
|
"@types/strip-ansi": "^5.2.1",
|
|
46
45
|
"@types/wrap-ansi": "^3.0.0",
|
|
47
46
|
"chai": "^4.3.4",
|
|
@@ -56,6 +55,7 @@
|
|
|
56
55
|
"mocha": "^8.4.0",
|
|
57
56
|
"nock": "^13.2.1",
|
|
58
57
|
"proxyquire": "^2.1.3",
|
|
58
|
+
"shelljs": "^0.8.4",
|
|
59
59
|
"shx": "^0.3.3",
|
|
60
60
|
"sinon": "^11.1.2",
|
|
61
61
|
"ts-node": "^9.1.1",
|
|
@@ -98,6 +98,7 @@
|
|
|
98
98
|
"posttest": "yarn lint",
|
|
99
99
|
"prepack": "yarn run build",
|
|
100
100
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
101
|
+
"test:e2e": "mocha \"test/**/*.e2e.ts\" --timeout 600000",
|
|
101
102
|
"pretest": "yarn build --noEmit && tsc -p test --noEmit"
|
|
102
103
|
},
|
|
103
104
|
"types": "lib/index.d.ts"
|