@zeroheight/adoption-cli 3.5.0 → 3.7.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 +12 -0
- package/dist/cli.js +421 -4
- package/dist/cli.js.LICENSE.txt +76 -0
- package/package.json +8 -6
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/*!
|
|
10
|
+
* fill-range <https://github.com/jonschlinkert/fill-range>
|
|
11
|
+
*
|
|
12
|
+
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
13
|
+
* Licensed under the MIT License.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/*!
|
|
17
|
+
* is-extglob <https://github.com/jonschlinkert/is-extglob>
|
|
18
|
+
*
|
|
19
|
+
* Copyright (c) 2014-2016, Jon Schlinkert.
|
|
20
|
+
* Licensed under the MIT License.
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
/*!
|
|
24
|
+
* is-glob <https://github.com/jonschlinkert/is-glob>
|
|
25
|
+
*
|
|
26
|
+
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
27
|
+
* Released under the MIT License.
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
/*!
|
|
31
|
+
* is-number <https://github.com/jonschlinkert/is-number>
|
|
32
|
+
*
|
|
33
|
+
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
34
|
+
* Released under the MIT License.
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
/*!
|
|
38
|
+
* to-regex-range <https://github.com/micromatch/to-regex-range>
|
|
39
|
+
*
|
|
40
|
+
* Copyright (c) 2015-present, Jon Schlinkert.
|
|
41
|
+
* Released under the MIT License.
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
/*! *****************************************************************************
|
|
45
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
46
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
47
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
48
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
49
|
+
|
|
50
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
51
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
52
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
53
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
54
|
+
|
|
55
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
56
|
+
and limitations under the License.
|
|
57
|
+
***************************************************************************** */
|
|
58
|
+
|
|
59
|
+
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
60
|
+
|
|
61
|
+
/*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @license
|
|
66
|
+
* Copyright Google LLC All Rights Reserved.
|
|
67
|
+
*
|
|
68
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
69
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
70
|
+
*/
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @license Angular v20.1.6
|
|
74
|
+
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
75
|
+
* License: MIT
|
|
76
|
+
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeroheight/adoption-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -11,12 +11,14 @@
|
|
|
11
11
|
"node": ">=20.10.0"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"cleanup": "rm -rf dist",
|
|
14
|
+
"cleanup": "rm -rf dist dist-dev",
|
|
15
15
|
"setup": "npm run build && npm i -g",
|
|
16
16
|
"start": "node dist/cli.js",
|
|
17
|
-
"start-dev": "NODE_ENV=dev node dist/cli.js",
|
|
18
|
-
"build": "rsbuild build",
|
|
19
|
-
"
|
|
17
|
+
"start-dev": "NODE_ENV=dev node --enable-source-maps dist-dev/cli.js",
|
|
18
|
+
"build": "rsbuild build --environment library",
|
|
19
|
+
"build:watch": "rsbuild build --watch --environment library",
|
|
20
|
+
"build-dev": "rsbuild build --environment development",
|
|
21
|
+
"build-dev:watch": "rsbuild build --watch --environment development",
|
|
20
22
|
"lint": "prettier --write .",
|
|
21
23
|
"test": "vitest"
|
|
22
24
|
},
|
|
@@ -55,7 +57,7 @@
|
|
|
55
57
|
"@typescript-eslint/parser": "^7.7.1",
|
|
56
58
|
"@vdemedes/prettier-config": "^2.0.1",
|
|
57
59
|
"@vitest/coverage-v8": "^2.1.2",
|
|
58
|
-
"@zeroheight/adoption-common": "^1.
|
|
60
|
+
"@zeroheight/adoption-common": "^1.5.0",
|
|
59
61
|
"eslint-plugin-react": "^7.32.2",
|
|
60
62
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
61
63
|
"ink-testing-library": "^4.0.0",
|