mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
[AAE-11496] Build and publish adf-office-services-ext (#2935)
This commit is contained in:
parent
4df548acb1
commit
010821d309
@ -385,7 +385,8 @@
|
||||
"production": {
|
||||
"tsConfig": "projects/adf-office-services-ext/tsconfig.lib.prod.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "production"
|
||||
},
|
||||
"test": {
|
||||
"builder": "@angular-devkit/build-angular:karma",
|
||||
|
@ -14,7 +14,7 @@
|
||||
"prebuild": "mkdir -p ./app/.tmp && cp ./app/src/app.config.json.tpl ./app/.tmp/app.config.json",
|
||||
"build": "ng build content-ce",
|
||||
"build.release": "npm run build -- --configuration=production,release",
|
||||
"build-libs": "ng build aca-shared",
|
||||
"build-libs": "ng build aca-shared && ng build adf-office-services-ext",
|
||||
"test": "ng test",
|
||||
"test:ci": "ng test adf-office-services-ext && ng test content-ce --code-coverage",
|
||||
"lint": "NODE_OPTIONS=--max_old_space_size=4096 ng lint && npm run spellcheck && npm run e2e.typecheck",
|
||||
|
@ -10,7 +10,6 @@
|
||||
"@alfresco/adf-extensions": "6.0.0-A.1-37376",
|
||||
"@alfresco/js-api": "5.2.0",
|
||||
"@angular/animations": "14.1.2",
|
||||
"@angular/cdk": "14.1.2",
|
||||
"@angular/common": "14.1.2",
|
||||
"@angular/compiler": "14.1.2",
|
||||
"@angular/core": "14.1.2",
|
||||
|
7
projects/adf-office-services-ext/ng-package.json
Normal file
7
projects/adf-office-services-ext/ng-package.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"dest": "../../dist/@alfresco/adf-office-services-ext",
|
||||
"lib": {
|
||||
"entryFile": "src/public-api.ts"
|
||||
},
|
||||
"assets": ["assets"]
|
||||
}
|
8
projects/adf-office-services-ext/package.json
Normal file
8
projects/adf-office-services-ext/package.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "@alfresco/adf-office-services-ext",
|
||||
"version": "2.0.1",
|
||||
"main": "src/index.ts",
|
||||
"dependencies": {
|
||||
"tslib": "^2.0.0"
|
||||
}
|
||||
}
|
@ -1,7 +1,12 @@
|
||||
{
|
||||
"extends": "./tsconfig.lib.json",
|
||||
"compilerOptions": {
|
||||
"declarationMap": false
|
||||
"declarationMap": false,
|
||||
"paths": {
|
||||
"@alfresco/aca-shared": ["dist/@alfresco/aca-shared"],
|
||||
"@alfresco/aca-shared/store": ["dist/@alfresco/aca-shared/store"],
|
||||
"@alfresco/aca-shared/rules": ["dist/@alfresco/aca-shared/rules"]
|
||||
}
|
||||
},
|
||||
"angularCompilerOptions": {
|
||||
"compilationMode": "partial"
|
||||
|
@ -40,6 +40,7 @@ echo -e "Branch is '$TRAVIS_BRANCH', therefore publish with '$TAG_NPM' tag\n"
|
||||
|
||||
PROJECTS=(
|
||||
'aca-shared'
|
||||
'adf-office-services-ext'
|
||||
);
|
||||
|
||||
for PROJECT in "${PROJECTS[@]}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user