Skip to content

Commit

Permalink
chore(architecture): start monorepo structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchoqueux committed Apr 9, 2024
1 parent cef15ea commit ea0116d
Show file tree
Hide file tree
Showing 103 changed files with 2,361 additions and 2,311 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
const path = require('path');



module.exports = {
root: true,
extends: [
Expand All @@ -14,7 +18,7 @@ module.exports = {
settings: {
'import/resolver': {
webpack: {
config: './webpack.config.cjs',
config: path.resolve(__dirname, './webpack.config.cjs'),
},
},
},
Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
# See https://help.github.com/articles/ignoring-files/ for how to configure your environment.
# See https://github.com/github/gitignore/tree/master/Global for a list of global ignore rules.

/node_modules/
**/node_modules/
/dist/
/potree/
potree
/lib/
**/lib/
/docs/out/
coverage
**/coverage
.nyc_output/
/src/ThreeExtended/
2 changes: 1 addition & 1 deletion docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
}
},
"source": {
"include": [ "src", "examples/js/plugins" ],
"include": [ "src", "examples/js/plugins", "packages" ],
"exclude": [ "src/ThreeExtended" ]
},
"plugins": ["plugins/markdown"]
Expand Down
Loading

0 comments on commit ea0116d

Please sign in to comment.