Skip to content

Commit

Permalink
pkg: re-shuffle files for initial lerna setup
Browse files Browse the repository at this point in the history
move the bulk of the code into the packages dir for skyring. The project
is a shell / bootstrapper

Semver: minor
  • Loading branch information
esatterwhite committed Mar 17, 2020
1 parent 3bf5b55 commit 9a4a248
Show file tree
Hide file tree
Showing 46 changed files with 11,411 additions and 2,698 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
node_modules/
.nyc_output
packages/
npm-debug.log
lerna-debug.log
*.tgz
coverage/
*.save
Expand Down
12 changes: 6 additions & 6 deletions jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"source":{
"excludePattern":"\\.spec*",
"include": [
"./README.md"
, "./index.js"
, "./lib"
, "./conf"
, "node_modules/keef/index.js"
"./packages/skyring/README.md"
, "./packages/skyring/index.js"
, "./packages/skyring/lib"
, "./packages/skyring/conf"
, "./packages/skyring/node_modules/keef/index.js"
],
"exclude":["test/", "./**/node_modules/", "./lib/server/api/"]
"exclude":["/**/test/", "./**/node_modules/", "./packages/skyring/lib/server/api/"]
}
,"tags":{
"allowUnknownTags":true
Expand Down
6 changes: 6 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"packages": [
"packages/*"
],
"version": "independent"
}
Loading

0 comments on commit 9a4a248

Please sign in to comment.