refactor: 1

pull/9/head^2
xiaojunnuo 2022-10-07 21:48:39 +08:00
parent 7145aa60ca
commit b1e60456cf
7 changed files with 18 additions and 6 deletions

1
.gitignore vendored
View File

@ -25,3 +25,4 @@ gen
/other
/dev-sidecar-test
/packages/core/certd/yarn.lock
/pnpm-lock.yaml

9
.gitmodules vendored Normal file
View File

@ -0,0 +1,9 @@
[submodule "packages/server/certd-client"]
path = packages/server/certd-client
url = https://github.com/certd/certd-client
[submodule "packages/server/certd-server"]
path = packages/server/certd-server
url = https://github.com/certd/certd-server
[submodule "packages/basic/acme-client"]
path = packages/basic/acme-client
url = https://github.com/certd/node-acme-client

0
.npmrc Normal file
View File

View File

@ -1,6 +0,0 @@
{
"packages": [
"packages/*/*"
],
"version": "0.2.2"
}

@ -0,0 +1 @@
Subproject commit 21126e0bd7390946aecc277b745baa0fab8f4899

@ -0,0 +1 @@
Subproject commit f565b8d5f25ea46a0ab3f8e5917a8f9540fa7455

6
pnpm-workspace.yaml Normal file
View File

@ -0,0 +1,6 @@
packages:
# all packages in direct subdirs of packages/
- 'packages/*/*'
# exclude packages that are inside test directories
- '!**/test/**'
- '!packages/ui/*'