@jujulego/jill 2.0.2 → 2.0.4
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/dist/798.js +3 -0
- package/dist/798.js.LICENSE.txt +73 -0
- package/dist/798.js.map +1 -0
- package/dist/main.js +1 -28
- package/dist/main.js.map +1 -1
- package/dist/runtime.js +2 -0
- package/dist/runtime.js.map +1 -0
- package/package.json +41 -41
- package/dist/commands/each.js +0 -118
- package/dist/commands/each.js.map +0 -1
- package/dist/commands/list.js +0 -170
- package/dist/commands/list.js.map +0 -1
- package/dist/commands/run.js +0 -71
- package/dist/commands/run.js.map +0 -1
- package/dist/commands/tree.js +0 -35
- package/dist/commands/tree.js.map +0 -1
- package/dist/filters/affected.filter.js +0 -82
- package/dist/filters/affected.filter.js.map +0 -1
- package/dist/filters/index.js +0 -21
- package/dist/filters/index.js.map +0 -1
- package/dist/filters/pipeline.js +0 -34
- package/dist/filters/pipeline.js.map +0 -1
- package/dist/filters/private.filter.js +0 -20
- package/dist/filters/private.filter.js.map +0 -1
- package/dist/filters/scripts.filter.js +0 -21
- package/dist/filters/scripts.filter.js.map +0 -1
- package/dist/git.js +0 -94
- package/dist/git.js.map +0 -1
- package/dist/middlewares/global-config.js +0 -36
- package/dist/middlewares/global-config.js.map +0 -1
- package/dist/middlewares/index.js +0 -21
- package/dist/middlewares/index.js.map +0 -1
- package/dist/middlewares/load-project.js +0 -41
- package/dist/middlewares/load-project.js.map +0 -1
- package/dist/middlewares/load-workspace.js +0 -42
- package/dist/middlewares/load-workspace.js.map +0 -1
- package/dist/middlewares/setup-ink.js +0 -22
- package/dist/middlewares/setup-ink.js.map +0 -1
- package/dist/project/index.js +0 -19
- package/dist/project/index.js.map +0 -1
- package/dist/project/project.js +0 -190
- package/dist/project/project.js.map +0 -1
- package/dist/project/workspace.js +0 -173
- package/dist/project/workspace.js.map +0 -1
- package/dist/services/index.js +0 -21
- package/dist/services/index.js.map +0 -1
- package/dist/services/inversify.config.js +0 -34
- package/dist/services/inversify.config.js.map +0 -1
- package/dist/services/logger.service.js +0 -75
- package/dist/services/logger.service.js.map +0 -1
- package/dist/services/spinner.service.js +0 -57
- package/dist/services/spinner.service.js.map +0 -1
- package/dist/services/task-manager.service.js +0 -18
- package/dist/services/task-manager.service.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/dist/types.js +0 -7
- package/dist/types.js.map +0 -1
- package/dist/ui/global-spinner.js +0 -65
- package/dist/ui/global-spinner.js.map +0 -1
- package/dist/ui/index.js +0 -25
- package/dist/ui/index.js.map +0 -1
- package/dist/ui/layout.js +0 -20
- package/dist/ui/layout.js.map +0 -1
- package/dist/ui/list.js +0 -30
- package/dist/ui/list.js.map +0 -1
- package/dist/ui/static-logs.js +0 -63
- package/dist/ui/static-logs.js.map +0 -1
- package/dist/ui/task-name.js +0 -35
- package/dist/ui/task-name.js.map +0 -1
- package/dist/ui/task-spinner.js +0 -117
- package/dist/ui/task-spinner.js.map +0 -1
- package/dist/ui/tasks-spinner.js +0 -39
- package/dist/ui/tasks-spinner.js.map +0 -1
- package/dist/ui/workspace-tree.js +0 -88
- package/dist/ui/workspace-tree.js.map +0 -1
- package/dist/utils/index.js +0 -20
- package/dist/utils/index.js.map +0 -1
- package/dist/utils/streams.js +0 -49
- package/dist/utils/streams.js.map +0 -1
- package/dist/utils/string.js +0 -14
- package/dist/utils/string.js.map +0 -1
- package/dist/utils/yargs.js +0 -33
- package/dist/utils/yargs.js.map +0 -1
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*! *****************************************************************************
|
|
8
|
+
Copyright (C) Microsoft. All rights reserved.
|
|
9
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
10
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
11
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
15
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
16
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
17
|
+
|
|
18
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
19
|
+
and limitations under the License.
|
|
20
|
+
***************************************************************************** */
|
|
21
|
+
|
|
22
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @license
|
|
26
|
+
* Copyright (c) 2016, Contributors
|
|
27
|
+
* SPDX-License-Identifier: ISC
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @license
|
|
32
|
+
* Lodash <https://lodash.com/>
|
|
33
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
34
|
+
* Released under MIT license <https://lodash.com/license>
|
|
35
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
36
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
/** @license React v0.20.2
|
|
40
|
+
* scheduler.production.min.js
|
|
41
|
+
*
|
|
42
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
43
|
+
*
|
|
44
|
+
* This source code is licensed under the MIT license found in the
|
|
45
|
+
* LICENSE file in the root directory of this source tree.
|
|
46
|
+
*/
|
|
47
|
+
|
|
48
|
+
/** @license React v0.26.2
|
|
49
|
+
* react-reconciler.production.min.js
|
|
50
|
+
*
|
|
51
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
52
|
+
*
|
|
53
|
+
* This source code is licensed under the MIT license found in the
|
|
54
|
+
* LICENSE file in the root directory of this source tree.
|
|
55
|
+
*/
|
|
56
|
+
|
|
57
|
+
/** @license React v17.0.2
|
|
58
|
+
* react-jsx-runtime.production.min.js
|
|
59
|
+
*
|
|
60
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
61
|
+
*
|
|
62
|
+
* This source code is licensed under the MIT license found in the
|
|
63
|
+
* LICENSE file in the root directory of this source tree.
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
/** @license React v17.0.2
|
|
67
|
+
* react.production.min.js
|
|
68
|
+
*
|
|
69
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
70
|
+
*
|
|
71
|
+
* This source code is licensed under the MIT license found in the
|
|
72
|
+
* LICENSE file in the root directory of this source tree.
|
|
73
|
+
*/
|