feat(webpack5): initial project files

This commit is contained in:
Igor Randjelovic
2020-11-14 12:07:56 +01:00
parent 023be8cbf1
commit 49a47fef2a
19 changed files with 143 additions and 3 deletions

View File

@@ -253,6 +253,31 @@
}
}
}
},
"webpack5": {
"root": "packages/webpack5",
"sourceRoot": "packages/webpack5",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": []
}
},
"build": {
"builder": "@nrwl/workspace:run-commands",
"outputs": ["dist/packages"],
"options": {
"commands": [
"npm run build"
],
"cwd": "packages/webpack5",
"parallel": false
}
}
}
}
},
"cli": {