[AAE-6202] Create a stories lib to make all the adf stories available (#7314)

* Create a stories lib to make all the adf stories available

* Run the test with a diff ext type

* sunc nx file
This commit is contained in:
Maurizio Vitale
2021-10-22 14:48:48 +01:00
committed by GitHub
parent 0270608bb0
commit a31f86f57b
11 changed files with 124 additions and 4 deletions
+40
View File
@@ -737,6 +737,46 @@
}
}
}
},
"stories": {
"root": "lib/stories",
"sourceRoot": "lib/stories",
"projectType": "library",
"architect": {
"storybook": {
"builder": "@nrwl/storybook:storybook",
"options": {
"uiFramework": "@storybook/angular",
"port": 4400,
"config": {
"configFolder": "lib/stories/.storybook"
}
},
"configurations": {
"ci": {
"quiet": true
}
}
},
"build-storybook": {
"builder": "@nrwl/storybook:build",
"outputs": [
"{options.outputPath}"
],
"options": {
"uiFramework": "@storybook/angular",
"outputPath": "dist/storybook/stories",
"config": {
"configFolder": "lib/stories/.storybook"
}
},
"configurations": {
"ci": {
"quiet": true
}
}
}
}
}
},
"defaultProject": "demoshell",