Skip to content

Commit

Permalink
Separate minimal and full NPM dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacabraham committed May 30, 2020
1 parent 1efe36e commit 6ecb3cd
Show file tree
Hide file tree
Showing 6 changed files with 7,480 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Content/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,18 @@
"RELEASE_NOTES.md",
"**/paket.*",
"*.fsx",
"src/Client/package.default.json",
"src/Client/package-lock.default.json",
"src/Client/webpack.default.config.js",
"README.md"
],
"condition": "(minimal)"
},
{
"exclude": [
"src/Client/package.minimal.json",
"src/Client/package-lock.minimal.json",
"src/Client/webpack.minimal.config.js",
"src/Client/client-minimal.fs",
"README-minimal.md"
],
"condition": "(!minimal)"
Expand All @@ -66,6 +69,10 @@
"rename": {
"src/Client/webpack.default.config.js": "src/Client/webpack.config.js",
"src/Client/webpack.minimal.config.js": "src/Client/webpack.config.js",
"src/Client/package.minimal.json": "src/Client/package.json",
"src/Client/package.default.json": "src/Client/package.json",
"src/Client/package-lock.minimal.json": "src/Client/package-lock.json",
"src/Client/package-lock.default.json": "src/Client/package-lock.json",
"README-minimal.md": "README.md"
}
}
Expand Down
Loading

0 comments on commit 6ecb3cd

Please sign in to comment.