@cocreate/cli 1.28.4 → 1.29.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/.github/FUNDING.yml +3 -3
- package/.github/workflows/automated.yml +55 -55
- package/CHANGELOG.md +13 -0
- package/CONTRIBUTING.md +96 -96
- package/CoCreate.config.js +26 -26
- package/LICENSE +21 -21
- package/README.md +76 -76
- package/docs/index.html +242 -67
- package/package.json +1 -1
- package/release.config.js +21 -21
- package/repositories.js +475 -475
- package/src/addMeta.js +74 -74
- package/src/coc.js +80 -80
- package/src/commands/bump.js +85 -85
- package/src/commands/clone.js +2 -2
- package/src/commands/fs/automated.js +141 -141
- package/src/commands/fs/bump.js +74 -74
- package/src/commands/fs/config.js +78 -78
- package/src/commands/fs/contribution.js +136 -136
- package/src/commands/fs/gitignore.js +40 -40
- package/src/commands/fs/icon-extract.js +31 -31
- package/src/commands/fs/manual.js +91 -91
- package/src/commands/fs/package.js +39 -39
- package/src/commands/fs/readme.js +138 -138
- package/src/commands/fs/remove.js +28 -28
- package/src/commands/fs/replace.js +42 -42
- package/src/commands/fs/webpack.js +191 -191
- package/src/commands/git/gitConfig.js +70 -70
- package/src/commands/gitConfig.js +72 -72
- package/src/commands/install.js +24 -24
- package/src/commands/link.js +107 -107
- package/src/commands/nginx.js +25 -25
- package/src/commands/other/add.js +63 -63
- package/src/commands/other/config.sh +4 -4
- package/src/commands/other/nginxConfigManager.js +137 -137
- package/src/commands/other/nodeCertManager.js +147 -147
- package/src/commands/other/symlinkPwa.js +38 -38
- package/src/commands/other/test.js +43 -43
- package/src/commands/other/updateModules.js +50 -50
- package/src/commands/symlink.js +113 -111
- package/src/execute.js +66 -66
- package/src/spawn.js +9 -9
- package/webpack.config.js +84 -84
package/.github/FUNDING.yml
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
# These are supported funding model platforms
|
|
2
|
-
|
|
3
|
-
github: CoCreate-app
|
|
1
|
+
# These are supported funding model platforms
|
|
2
|
+
|
|
3
|
+
github: CoCreate-app
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
name: Automated
|
|
2
|
-
"on":
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
jobs:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
1
|
+
name: Automated
|
|
2
|
+
"on":
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
jobs:
|
|
7
|
+
about:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- name: Checkout
|
|
11
|
+
uses: actions/checkout@v3
|
|
12
|
+
- name: setup nodejs
|
|
13
|
+
uses: actions/setup-node@v3
|
|
14
|
+
with:
|
|
15
|
+
node-version: 16
|
|
16
|
+
- name: Jaid/action-sync-node-meta
|
|
17
|
+
uses: jaid/action-sync-node-meta@v1.4.0
|
|
18
|
+
with:
|
|
19
|
+
direction: overwrite-github
|
|
20
|
+
githubToken: "${{ secrets.GITHUB }}"
|
|
21
|
+
release:
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
steps:
|
|
24
|
+
- name: Checkout
|
|
25
|
+
uses: actions/checkout@v3
|
|
26
|
+
- name: setup nodejs
|
|
27
|
+
uses: actions/setup-node@v3
|
|
28
|
+
with:
|
|
29
|
+
node-version: 14
|
|
30
|
+
- name: Semantic Release
|
|
31
|
+
uses: cycjimmy/semantic-release-action@v3
|
|
32
|
+
id: semantic
|
|
33
|
+
with:
|
|
34
|
+
extra_plugins: |
|
|
35
|
+
@semantic-release/changelog
|
|
36
|
+
@semantic-release/git
|
|
37
|
+
@semantic-release/github
|
|
38
|
+
env:
|
|
39
|
+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
40
|
+
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
|
|
41
|
+
outputs:
|
|
42
|
+
new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
|
|
43
|
+
new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
|
|
44
|
+
docs:
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
steps:
|
|
47
|
+
- name: Checkout
|
|
48
|
+
uses: actions/checkout@v3
|
|
49
|
+
- name: setup nodejs
|
|
50
|
+
uses: actions/setup-node@v3
|
|
51
|
+
with:
|
|
52
|
+
node-version: 16
|
|
53
|
+
|
|
54
|
+
- name: update documentation
|
|
55
|
+
uses: CoCreate-app/CoCreate-docs@master
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# [1.29.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.28.4...v1.29.0) (2023-06-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* html formating ([0020fee](https://github.com/CoCreate-app/CoCreate-cli/commit/0020fee96b01b557492f94e5488bd2108a2dff15))
|
|
7
|
+
* **semantic-release:** worklow error solved by running node version 14 ([b4b71cb](https://github.com/CoCreate-app/CoCreate-cli/commit/b4b71cb70cff5f6521cbb80e3a96713cf7372480))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **symlink:** Update symlink command ([4d639b8](https://github.com/CoCreate-app/CoCreate-cli/commit/4d639b8f674e826a193759aa710ac479c6bb0cbd))
|
|
13
|
+
|
|
1
14
|
## [1.28.4](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.28.3...v1.28.4) (2023-05-25)
|
|
2
15
|
|
|
3
16
|
|
package/CONTRIBUTING.md
CHANGED
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
# Contributing to CoCreate-cli
|
|
2
|
-
|
|
3
|
-
This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-cli/graphs/contributors).
|
|
4
|
-
You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-cli/pulls),
|
|
5
|
-
[propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-cli/issues).
|
|
6
|
-
|
|
7
|
-
In the examples below, substitute your Github username for `contributor` in URLs.
|
|
8
|
-
|
|
9
|
-
## Fork the Project
|
|
10
|
-
|
|
11
|
-
Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-cli) and check out your copy.
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
git clone https://github.com/contributor/CoCreate-cli.git
|
|
15
|
-
cd CoCreate-cli
|
|
16
|
-
git remote add upstream https://github.com/CoCreate-app/CoCreate-cli.git
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## Create a Topic Branch
|
|
20
|
-
|
|
21
|
-
Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch.
|
|
22
|
-
|
|
23
|
-
```
|
|
24
|
-
git checkout dev
|
|
25
|
-
git pull upstream dev
|
|
26
|
-
git checkout -b my-feature-branch
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Write Tests
|
|
30
|
-
|
|
31
|
-
Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
|
|
32
|
-
|
|
33
|
-
We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
|
|
34
|
-
|
|
35
|
-
## Write Code
|
|
36
|
-
|
|
37
|
-
Implement your feature or bug fix.
|
|
38
|
-
|
|
39
|
-
## Write Documentation
|
|
40
|
-
|
|
41
|
-
Document any external behavior in the [README](README.md).
|
|
42
|
-
|
|
43
|
-
## Commit Changes
|
|
44
|
-
|
|
45
|
-
Make sure git knows your name and email address:
|
|
46
|
-
|
|
47
|
-
```
|
|
48
|
-
git config --global user.name "Your Name"
|
|
49
|
-
git config --global user.email "contributor@example.com"
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog
|
|
53
|
-
and to release. Write meaningful commits according to
|
|
54
|
-
[Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important.
|
|
55
|
-
|
|
56
|
-
```
|
|
57
|
-
git add ...
|
|
58
|
-
git commit -am "commit-type(optional topic): a meaningful message"
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release):
|
|
62
|
-
|
|
63
|
-
| Commit message | Release type |
|
|
64
|
-
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
|
|
65
|
-
| `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release |
|
|
66
|
-
| `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
|
|
67
|
-
| `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release |
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
## Push
|
|
71
|
-
|
|
72
|
-
```
|
|
73
|
-
git push origin my-feature-branch
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
## Make a Pull Request
|
|
77
|
-
|
|
78
|
-
Go to [https://github.com/CoCreate-app/CoCreate-cli](https://github.com/CoCreate-app/CoCreate-cli) and select your feature branch.
|
|
79
|
-
Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
|
|
80
|
-
|
|
81
|
-
## Rebase
|
|
82
|
-
|
|
83
|
-
If you've been working on a change for a while, rebase with upstream/dev.
|
|
84
|
-
|
|
85
|
-
```
|
|
86
|
-
git fetch upstream
|
|
87
|
-
git rebase upstream/dev
|
|
88
|
-
git push origin my-feature-branch -f
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
## Be Patient
|
|
92
|
-
|
|
93
|
-
It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang in there!
|
|
94
|
-
|
|
95
|
-
## Thank You
|
|
96
|
-
|
|
1
|
+
# Contributing to CoCreate-cli
|
|
2
|
+
|
|
3
|
+
This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-cli/graphs/contributors).
|
|
4
|
+
You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-cli/pulls),
|
|
5
|
+
[propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-cli/issues).
|
|
6
|
+
|
|
7
|
+
In the examples below, substitute your Github username for `contributor` in URLs.
|
|
8
|
+
|
|
9
|
+
## Fork the Project
|
|
10
|
+
|
|
11
|
+
Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-cli) and check out your copy.
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
git clone https://github.com/contributor/CoCreate-cli.git
|
|
15
|
+
cd CoCreate-cli
|
|
16
|
+
git remote add upstream https://github.com/CoCreate-app/CoCreate-cli.git
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Create a Topic Branch
|
|
20
|
+
|
|
21
|
+
Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch.
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
git checkout dev
|
|
25
|
+
git pull upstream dev
|
|
26
|
+
git checkout -b my-feature-branch
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Write Tests
|
|
30
|
+
|
|
31
|
+
Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
|
|
32
|
+
|
|
33
|
+
We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
|
|
34
|
+
|
|
35
|
+
## Write Code
|
|
36
|
+
|
|
37
|
+
Implement your feature or bug fix.
|
|
38
|
+
|
|
39
|
+
## Write Documentation
|
|
40
|
+
|
|
41
|
+
Document any external behavior in the [README](README.md).
|
|
42
|
+
|
|
43
|
+
## Commit Changes
|
|
44
|
+
|
|
45
|
+
Make sure git knows your name and email address:
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
git config --global user.name "Your Name"
|
|
49
|
+
git config --global user.email "contributor@example.com"
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog
|
|
53
|
+
and to release. Write meaningful commits according to
|
|
54
|
+
[Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important.
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
git add ...
|
|
58
|
+
git commit -am "commit-type(optional topic): a meaningful message"
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release):
|
|
62
|
+
|
|
63
|
+
| Commit message | Release type |
|
|
64
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
|
|
65
|
+
| `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release |
|
|
66
|
+
| `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
|
|
67
|
+
| `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release |
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
## Push
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
git push origin my-feature-branch
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Make a Pull Request
|
|
77
|
+
|
|
78
|
+
Go to [https://github.com/CoCreate-app/CoCreate-cli](https://github.com/CoCreate-app/CoCreate-cli) and select your feature branch.
|
|
79
|
+
Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
|
|
80
|
+
|
|
81
|
+
## Rebase
|
|
82
|
+
|
|
83
|
+
If you've been working on a change for a while, rebase with upstream/dev.
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
git fetch upstream
|
|
87
|
+
git rebase upstream/dev
|
|
88
|
+
git push origin my-feature-branch -f
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## Be Patient
|
|
92
|
+
|
|
93
|
+
It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang in there!
|
|
94
|
+
|
|
95
|
+
## Thank You
|
|
96
|
+
|
|
97
97
|
Please do know that we really appreciate and value your time and work. We love you, really.
|
package/CoCreate.config.js
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
"config": {
|
|
3
|
-
"organization_id": "5ff747727005da1c272740ab",
|
|
4
|
-
"key": "2061acef-0451-4545-f754-60cf8160",
|
|
5
|
-
"host": "general.cocreate.app"
|
|
6
|
-
},
|
|
7
|
-
"sources": [
|
|
8
|
-
{
|
|
9
|
-
"collection": "files",
|
|
10
|
-
"document": {
|
|
11
|
-
"_id": "637ca36250234ef1671ce30f",
|
|
12
|
-
"name": "index.html",
|
|
13
|
-
"path": "/docs/cli/index.html",
|
|
14
|
-
"src": "{{./docs/index.html}}",
|
|
15
|
-
"hosts": [
|
|
16
|
-
"*",
|
|
17
|
-
"general.cocreate.app"
|
|
18
|
-
],
|
|
19
|
-
"directory": "/docs/cli",
|
|
20
|
-
"parentDirectory": "{{parentDirectory}}",
|
|
21
|
-
"content-type": "{{content-type}}",
|
|
22
|
-
"public": "true",
|
|
23
|
-
"website_id": "644d4bff8036fb9d1d1fd69c"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
]
|
|
1
|
+
module.exports = {
|
|
2
|
+
"config": {
|
|
3
|
+
"organization_id": "5ff747727005da1c272740ab",
|
|
4
|
+
"key": "2061acef-0451-4545-f754-60cf8160",
|
|
5
|
+
"host": "general.cocreate.app"
|
|
6
|
+
},
|
|
7
|
+
"sources": [
|
|
8
|
+
{
|
|
9
|
+
"collection": "files",
|
|
10
|
+
"document": {
|
|
11
|
+
"_id": "637ca36250234ef1671ce30f",
|
|
12
|
+
"name": "index.html",
|
|
13
|
+
"path": "/docs/cli/index.html",
|
|
14
|
+
"src": "{{./docs/index.html}}",
|
|
15
|
+
"hosts": [
|
|
16
|
+
"*",
|
|
17
|
+
"general.cocreate.app"
|
|
18
|
+
],
|
|
19
|
+
"directory": "/docs/cli",
|
|
20
|
+
"parentDirectory": "{{parentDirectory}}",
|
|
21
|
+
"content-type": "{{content-type}}",
|
|
22
|
+
"public": "true",
|
|
23
|
+
"website_id": "644d4bff8036fb9d1d1fd69c"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
27
|
}
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021 CoCreate LLC
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 CoCreate LLC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
# CoCreate-cli
|
|
2
|
-
|
|
3
|
-
A simple cli component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/cli)
|
|
4
|
-
|
|
5
|
-

|
|
6
|
-

|
|
7
|
-

|
|
8
|
-
|
|
9
|
-

|
|
10
|
-
|
|
11
|
-
## [Docs & Demo](https://cocreate.app/docs/cli)
|
|
12
|
-
|
|
13
|
-
For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/cli)
|
|
14
|
-
|
|
15
|
-
## NPM
|
|
16
|
-
|
|
17
|
-
```shell
|
|
18
|
-
$ npm i @cocreate/cli
|
|
19
|
-
```
|
|
20
|
-
* this will read the "repositories.js" from current directory -
|
|
21
|
-
```sh
|
|
22
|
-
coc command
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
* or you can pass relative path to config file -
|
|
26
|
-
```sh
|
|
27
|
-
coc --config src/repositories.js command
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
# Table of Contents
|
|
31
|
-
|
|
32
|
-
- [Table of Contents](#table-of-contents)
|
|
33
|
-
- [Announcements](#announcements)
|
|
34
|
-
- [Roadmap](#roadmap)
|
|
35
|
-
- [How to Contribute](#how-to-contribute)
|
|
36
|
-
- [About](#about)
|
|
37
|
-
- [License](#license)
|
|
38
|
-
|
|
39
|
-
<a name="announcements"></a>
|
|
40
|
-
|
|
41
|
-
# Announcements
|
|
42
|
-
|
|
43
|
-
All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-cli/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-cli/releases). You may also subscribe to email for releases and breaking changes.
|
|
44
|
-
|
|
45
|
-
<a name="roadmap"></a>
|
|
46
|
-
|
|
47
|
-
# Roadmap
|
|
48
|
-
|
|
49
|
-
If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-cli/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-cli/pulls). We would love to hear your feedback.
|
|
50
|
-
|
|
51
|
-
<a name="about"></a>
|
|
52
|
-
|
|
53
|
-
# About
|
|
54
|
-
|
|
55
|
-
CoCreate-cli is guided and supported by the CoCreate Developer Experience Team.
|
|
56
|
-
|
|
57
|
-
Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries.
|
|
58
|
-
|
|
59
|
-
CoCreate-cli is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC.
|
|
60
|
-
|
|
61
|
-
<a name="contribute"></a>
|
|
62
|
-
|
|
63
|
-
# How to Contribute
|
|
64
|
-
|
|
65
|
-
We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-cli/blob/master/CONTRIBUTING.md) guide for details.
|
|
66
|
-
|
|
67
|
-
We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/CoCreate-cli/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-cli/pulls) or merely upvote or comment on existing issues or pull requests.
|
|
68
|
-
|
|
69
|
-
We appreciate your continued support, thank you!
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
<a name="license"></a>
|
|
73
|
-
# License
|
|
74
|
-
|
|
75
|
-
[The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-cli/blob/master/LICENSE)
|
|
76
|
-
|
|
1
|
+
# CoCreate-cli
|
|
2
|
+
|
|
3
|
+
A simple cli component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/cli)
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
## [Docs & Demo](https://cocreate.app/docs/cli)
|
|
12
|
+
|
|
13
|
+
For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/cli)
|
|
14
|
+
|
|
15
|
+
## NPM
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
$ npm i @cocreate/cli
|
|
19
|
+
```
|
|
20
|
+
* this will read the "repositories.js" from current directory -
|
|
21
|
+
```sh
|
|
22
|
+
coc command
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
* or you can pass relative path to config file -
|
|
26
|
+
```sh
|
|
27
|
+
coc --config src/repositories.js command
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
# Table of Contents
|
|
31
|
+
|
|
32
|
+
- [Table of Contents](#table-of-contents)
|
|
33
|
+
- [Announcements](#announcements)
|
|
34
|
+
- [Roadmap](#roadmap)
|
|
35
|
+
- [How to Contribute](#how-to-contribute)
|
|
36
|
+
- [About](#about)
|
|
37
|
+
- [License](#license)
|
|
38
|
+
|
|
39
|
+
<a name="announcements"></a>
|
|
40
|
+
|
|
41
|
+
# Announcements
|
|
42
|
+
|
|
43
|
+
All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-cli/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-cli/releases). You may also subscribe to email for releases and breaking changes.
|
|
44
|
+
|
|
45
|
+
<a name="roadmap"></a>
|
|
46
|
+
|
|
47
|
+
# Roadmap
|
|
48
|
+
|
|
49
|
+
If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-cli/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-cli/pulls). We would love to hear your feedback.
|
|
50
|
+
|
|
51
|
+
<a name="about"></a>
|
|
52
|
+
|
|
53
|
+
# About
|
|
54
|
+
|
|
55
|
+
CoCreate-cli is guided and supported by the CoCreate Developer Experience Team.
|
|
56
|
+
|
|
57
|
+
Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries.
|
|
58
|
+
|
|
59
|
+
CoCreate-cli is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC.
|
|
60
|
+
|
|
61
|
+
<a name="contribute"></a>
|
|
62
|
+
|
|
63
|
+
# How to Contribute
|
|
64
|
+
|
|
65
|
+
We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-cli/blob/master/CONTRIBUTING.md) guide for details.
|
|
66
|
+
|
|
67
|
+
We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/CoCreate-cli/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-cli/pulls) or merely upvote or comment on existing issues or pull requests.
|
|
68
|
+
|
|
69
|
+
We appreciate your continued support, thank you!
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
<a name="license"></a>
|
|
73
|
+
# License
|
|
74
|
+
|
|
75
|
+
[The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-cli/blob/master/LICENSE)
|
|
76
|
+
|