feat(marketplace): add separate package and move some entities in it (#1283)

* feat(marketplace): add separate package and move some entities in it

* feat(marketplace): refactor release notes and list

* feat(marketplace): refactor showing a package

* chore: fix install progress

* chore: fix angular.json

* chore: properly share stream
This commit is contained in:
Alex Inkin
2022-03-15 20:11:54 +03:00
committed by GitHub
parent 72cb451f5a
commit 8942c29229
115 changed files with 1848 additions and 1457 deletions

View File

@@ -38,8 +38,9 @@
}
],
"styles": [
"styles/variables.scss",
"styles/global.scss",
"projects/shared/styles/variables.scss",
"projects/shared/styles/global.scss",
"projects/shared/styles/shared.scss",
"projects/ui/src/styles.scss"
],
"scripts": []
@@ -157,8 +158,8 @@
}
],
"styles": [
"styles/variables.scss",
"styles/global.scss",
"projects/shared/styles/variables.scss",
"projects/shared/styles/global.scss",
"projects/setup-wizard/src/styles.scss"
],
"scripts": []
@@ -276,8 +277,8 @@
}
],
"styles": [
"styles/variables.scss",
"styles/global.scss",
"projects/shared/styles/variables.scss",
"projects/shared/styles/global.scss",
"projects/diagnostic-ui/src/styles.scss"
],
"scripts": []
@@ -376,6 +377,29 @@
}
}
},
"marketplace": {
"projectType": "library",
"root": "projects/marketplace",
"sourceRoot": "projects/marketplace/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/marketplace/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/marketplace/tsconfig.prod.json"
},
"development": {
"tsConfig": "projects/marketplace/tsconfig.json"
}
},
"defaultConfiguration": "production"
}
}
},
"shared": {
"projectType": "library",
"root": "projects/shared",