Skip to content

Commit

Permalink
Lerna/Monorepo: initial reorganization
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Oct 24, 2018
1 parent 3b3882d commit 06dce66
Show file tree
Hide file tree
Showing 34 changed files with 6,700 additions and 2,149 deletions.
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.DS_Store
.nyc_output
coverage
/.nyc_output
/packages/**/build
/packages/**/prebuilds
/coverage
lerna-debug.log
node_modules
6 changes: 3 additions & 3 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ module.exports = function (grunt) {
],
},
eslint: {
target: ["gruntfile.js", "lib/*.js", "test/*.js", "examples/*.js"],
target: ["gruntfile.js", "packages/**/lib/*.js", "test/*.js", "examples/*.js"],
options: {
configFile: ".eslint.json"
}
},
jscs: {
files: {
src: [ "gruntfile.js", "lib/*.js", "test/*.js", "examples/*.js"]
src: [ "gruntfile.js", "packages/**/lib/*.js", "test/*.js", "examples/*.js"]
},
options: {
config: ".jscsrc",
Expand Down Expand Up @@ -48,7 +48,7 @@ module.exports = function (grunt) {
}
},
jsbeautifier: {
files: [ "gruntfile.js", "lib/*.js", "test/*.js", "examples/*.js"],
files: [ "gruntfile.js", "packages/**/lib/*.js", "test/*.js", "examples/*.js"],
options: {
js: {
braceStyle: "collapse",
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 06dce66

Please sign in to comment.