Skip to content

Commit

Permalink
Initial commit with lerna and submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
fguitton committed Oct 11, 2017
1 parent c9c6109 commit ce91b7e
Show file tree
Hide file tree
Showing 12 changed files with 1,668 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
18 changes: 18 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[submodule "packages/borderline-devutils"]
path = packages/borderline-devutils
url = https://github.com/dsi-icl/borderline-devutils.git
[submodule "packages/borderline-server"]
path = packages/borderline-server
url = https://github.com/dsi-icl/borderline-server.git
[submodule "packages/borderline-middleware"]
path = packages/borderline-middleware
url = https://github.com/dsi-icl/borderline-middleware.git
[submodule "packages/borderline-ui"]
path = packages/borderline-ui
url = https://github.com/dsi-icl/borderline-ui.git
[submodule "packages/borderline-documentation"]
path = packages/borderline-documentation
url = https://github.com/dsi-icl/borderline-documentation.git
[submodule "packages/borderline-utils"]
path = packages/borderline-utils
url = https://github.com/dsi-icl/borderline-utils.git
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.extension
/.vscode
/coverage
/build
3 changes: 3 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"lerna": "2.4.0"
}
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "borderline",
"version": "0.0.1",
"description": "Master repo for all borderline packages.",
"author": "Florian Guitton <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dsi-icl/borderline.git"
},
"bugs": {
"url": "https://github.com/dsi-icl/borderline/issues"
},
"homepage": "https://github.com/dsi-icl/borderline#readme",
"engines": {
"node": ">= 7.10.1",
"yarn": ">= 0.17.8"
},
"scripts": {
"postinstall": "lerna bootstrap --stream",
"build": "lerna run build --stream",
"clean": "lerna run clean",
"start": "cd packages/borderline-ui && yarn start",
"test": "lerna run test --stream"
},
"devDependencies": {
"lerna": "^2.4.0"
}
}
1 change: 1 addition & 0 deletions packages/borderline-devutils
Submodule borderline-devutils added at faadad
1 change: 1 addition & 0 deletions packages/borderline-documentation
1 change: 1 addition & 0 deletions packages/borderline-middleware
Submodule borderline-middleware added at 8834e1
1 change: 1 addition & 0 deletions packages/borderline-server
Submodule borderline-server added at 57f402
1 change: 1 addition & 0 deletions packages/borderline-ui
Submodule borderline-ui added at bebba6
1 change: 1 addition & 0 deletions packages/borderline-utils
Submodule borderline-utils added at f809c4
Loading

0 comments on commit ce91b7e

Please sign in to comment.