mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-09-17 14:21:14 +00:00
ACS-9039 fix for export aca-playwright-shared lib (#4317)
* ACS-9039 fix for export lib * Update project.json to remove test config * update package version * update package dependancy * Update package.json
This commit is contained in:
@@ -2,12 +2,18 @@
|
|||||||
"name": "@alfresco/aca-playwright-shared",
|
"name": "@alfresco/aca-playwright-shared",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"license": "LGPL-3.0",
|
"license": "LGPL-3.0",
|
||||||
"dependencies": {
|
"scripts": {},
|
||||||
"tslib": "^2.0.0"
|
|
||||||
},
|
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@alfresco/adf-content-services": "7.0.0-alpha.7-12408701331",
|
||||||
|
"@alfresco/adf-core": "7.0.0-alpha.7-12408701331",
|
||||||
|
"@alfresco/adf-extensions": "7.0.0-alpha.7-12408701331",
|
||||||
|
"@alfresco/eslint-plugin-eslint-angular": "7.0.0-alpha.7-12408701331",
|
||||||
|
"@alfresco/js-api": "8.0.0-alpha.7-12408701331",
|
||||||
|
"tslib": ">=2.0.0"
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Alfresco/alfresco-content-app.git"
|
"url": "https://github.com/Alfresco/alfresco-content-app.git"
|
||||||
|
@@ -17,9 +17,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultConfiguration": "production",
|
"defaultConfiguration": "production",
|
||||||
"outputs": [
|
"outputs": ["{workspaceRoot}/dist/@alfresco/aca-playwright-shared"]
|
||||||
"{workspaceRoot}/dist/@alfresco/aca-playwright-shared"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
"executor": "@angular-eslint/builder:lint"
|
"executor": "@angular-eslint/builder:lint"
|
||||||
|
@@ -2,7 +2,9 @@
|
|||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "../../out-tsc/lib",
|
"outDir": "../../out-tsc/lib",
|
||||||
|
"declarationMap": true,
|
||||||
"target": "es2020",
|
"target": "es2020",
|
||||||
|
"module": "es2015",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
@@ -11,7 +13,8 @@
|
|||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"types": [],
|
"types": [],
|
||||||
"lib": ["dom", "es2020"]
|
"lib": ["dom", "es2018"],
|
||||||
|
"paths": {}
|
||||||
},
|
},
|
||||||
"angularCompilerOptions": {
|
"angularCompilerOptions": {
|
||||||
"skipTemplateCodegen": true,
|
"skipTemplateCodegen": true,
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@alfresco/aca-shared",
|
"name": "@alfresco/aca-shared",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"commit": "",
|
|
||||||
"license": "LGPL-3.0",
|
"license": "LGPL-3.0",
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -41,6 +41,7 @@
|
|||||||
"@alfresco/aca-content/viewer": ["projects/aca-content/viewer/src/public-api.ts"],
|
"@alfresco/aca-content/viewer": ["projects/aca-content/viewer/src/public-api.ts"],
|
||||||
"@alfresco/aca-content/preview": ["projects/aca-content/preview/src/public-api.ts"],
|
"@alfresco/aca-content/preview": ["projects/aca-content/preview/src/public-api.ts"],
|
||||||
"@alfresco/aca-playwright-shared": ["projects/aca-playwright-shared/src/public-api.ts"],
|
"@alfresco/aca-playwright-shared": ["projects/aca-playwright-shared/src/public-api.ts"],
|
||||||
|
"@alfresco/aca-playwright-shared/*": ["projects/aca-playwright-shared/src/*/index.ts"],
|
||||||
"package.json": ["package.json"],
|
"package.json": ["package.json"],
|
||||||
"*": ["./node_modules/*"]
|
"*": ["./node_modules/*"]
|
||||||
}
|
}
|
||||||
|
@@ -31,6 +31,7 @@
|
|||||||
"@alfresco/aca-shared/rules": ["projects/aca-shared/rules/src/public-api.ts"],
|
"@alfresco/aca-shared/rules": ["projects/aca-shared/rules/src/public-api.ts"],
|
||||||
"@alfresco/aca-shared/store": ["projects/aca-shared/store/src/public-api.ts"],
|
"@alfresco/aca-shared/store": ["projects/aca-shared/store/src/public-api.ts"],
|
||||||
"@alfresco/aca-playwright-shared": ["projects/aca-playwright-shared/src/public-api.ts"],
|
"@alfresco/aca-playwright-shared": ["projects/aca-playwright-shared/src/public-api.ts"],
|
||||||
|
"@alfresco/aca-playwright-shared/*": ["projects/aca-playwright-shared/src/*/index.ts"],
|
||||||
"package.json": ["package.json"]
|
"package.json": ["package.json"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user