2022-08-05 21:52:47 +03:00
|
|
|
{
|
2023-02-28 22:41:18 +03:00
|
|
|
"name": "console-ee",
|
2022-08-05 21:52:47 +03:00
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
2022-10-20 19:20:35 +03:00
|
|
|
"sourceRoot": "apps/console-ee/src",
|
2022-08-05 21:52:47 +03:00
|
|
|
"projectType": "application",
|
|
|
|
"targets": {
|
2022-11-18 21:55:17 +03:00
|
|
|
"build-server-assets": {
|
2023-01-20 19:04:25 +03:00
|
|
|
"executor": "@hasura/internal-plugin:build-server-assets",
|
2022-12-16 17:36:11 +03:00
|
|
|
"inputs": ["{workspaceRoot}/dist/apps/console-ee/**"],
|
2023-02-28 22:41:18 +03:00
|
|
|
"outputs": ["{workspaceRoot}/dist/apps/server-assets-console-ee"],
|
2023-03-22 23:52:22 +03:00
|
|
|
"dependsOn": ["validate-javascript-bundle-output"]
|
|
|
|
},
|
|
|
|
"validate-javascript-bundle-output": {
|
|
|
|
"executor": "@hasura/internal-plugin:validate-javascript-bundle-output",
|
|
|
|
"inputs": ["{workspaceRoot}/dist/apps/console-ee/**"],
|
2023-01-20 19:04:25 +03:00
|
|
|
"dependsOn": ["build"]
|
2022-11-18 21:55:17 +03:00
|
|
|
},
|
2022-08-05 21:52:47 +03:00
|
|
|
"build": {
|
2023-02-28 22:41:18 +03:00
|
|
|
"executor": "@nrwl/webpack:webpack",
|
2022-08-05 21:52:47 +03:00
|
|
|
"outputs": ["{options.outputPath}"],
|
|
|
|
"defaultConfiguration": "production",
|
|
|
|
"options": {
|
|
|
|
"compiler": "babel",
|
2022-10-20 19:20:35 +03:00
|
|
|
"outputPath": "dist/apps/console-ee",
|
|
|
|
"index": "apps/console-ee/src/index.html",
|
2022-08-05 21:52:47 +03:00
|
|
|
"baseHref": "/",
|
2023-06-13 22:56:25 +03:00
|
|
|
"buildLibsFromSource": false,
|
2022-10-20 19:20:35 +03:00
|
|
|
"main": "apps/console-ee/src/main.tsx",
|
|
|
|
"polyfills": "apps/console-ee/src/polyfills.ts",
|
|
|
|
"tsConfig": "apps/console-ee/tsconfig.app.json",
|
2022-08-05 21:52:47 +03:00
|
|
|
"assets": [
|
2022-12-16 17:36:11 +03:00
|
|
|
{
|
|
|
|
"glob": "**",
|
|
|
|
"input": "apps/console-ee/src/assets/common",
|
|
|
|
"output": "common"
|
|
|
|
}
|
2022-10-20 19:20:35 +03:00
|
|
|
],
|
2023-01-25 23:53:48 +03:00
|
|
|
"styles": ["apps/console-ee/src/css/tailwind.css"],
|
2022-08-05 21:52:47 +03:00
|
|
|
"scripts": [],
|
2023-01-24 01:20:35 +03:00
|
|
|
"webpackConfig": "custom-webpack.config.js",
|
2023-02-28 22:41:18 +03:00
|
|
|
"postcssConfig": "apps/console-ee/postcss.config.js",
|
|
|
|
"isolatedConfig": true
|
2022-08-05 21:52:47 +03:00
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"development": {
|
2022-10-12 15:45:49 +03:00
|
|
|
"outputHashing": "none",
|
|
|
|
"extractCss": false,
|
2022-08-05 21:52:47 +03:00
|
|
|
"extractLicenses": false,
|
|
|
|
"optimization": false,
|
|
|
|
"sourceMap": true,
|
2023-01-19 01:22:09 +03:00
|
|
|
"vendorChunk": true
|
2022-08-05 21:52:47 +03:00
|
|
|
},
|
|
|
|
"production": {
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
2022-10-20 19:20:35 +03:00
|
|
|
"replace": "apps/console-ee/src/environments/environment.ts",
|
|
|
|
"with": "apps/console-ee/src/environments/environment.prod.ts"
|
2022-08-05 21:52:47 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"optimization": true,
|
2023-02-28 22:41:18 +03:00
|
|
|
"outputHashing": "bundles",
|
2022-09-27 14:48:31 +03:00
|
|
|
"extractCss": false,
|
|
|
|
"sourceMap": true,
|
2023-01-19 01:22:09 +03:00
|
|
|
"namedChunks": true,
|
2023-01-20 19:04:25 +03:00
|
|
|
"generateIndexHtml": true,
|
2022-08-05 21:52:47 +03:00
|
|
|
"extractLicenses": true,
|
2023-01-19 01:22:09 +03:00
|
|
|
"vendorChunk": true
|
2022-08-05 21:52:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"serve": {
|
2023-02-28 22:41:18 +03:00
|
|
|
"executor": "@nrwl/webpack:dev-server",
|
2022-08-05 21:52:47 +03:00
|
|
|
"defaultConfiguration": "development",
|
|
|
|
"options": {
|
2022-10-20 19:20:35 +03:00
|
|
|
"buildTarget": "console-ee:build",
|
2022-10-12 15:45:49 +03:00
|
|
|
"hmr": true,
|
|
|
|
"port": 5500,
|
|
|
|
"allowedHosts": "all"
|
2022-08-05 21:52:47 +03:00
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"development": {
|
2022-10-20 19:20:35 +03:00
|
|
|
"buildTarget": "console-ee:build:development"
|
2022-08-05 21:52:47 +03:00
|
|
|
},
|
|
|
|
"production": {
|
2022-10-20 19:20:35 +03:00
|
|
|
"buildTarget": "console-ee:build:production",
|
2022-08-05 21:52:47 +03:00
|
|
|
"hmr": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"executor": "@nrwl/linter:eslint",
|
|
|
|
"outputs": ["{options.outputFile}"],
|
|
|
|
"options": {
|
2023-05-09 13:41:15 +03:00
|
|
|
"lintFilePatterns": ["apps/console-ee/**/*.{ts,tsx,js,jsx,json}"]
|
2022-08-05 21:52:47 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"executor": "@nrwl/jest:jest",
|
2023-02-28 22:41:18 +03:00
|
|
|
"outputs": ["{workspaceRoot}/coverage/apps/console-ee"],
|
2022-08-05 21:52:47 +03:00
|
|
|
"options": {
|
2022-10-20 19:20:35 +03:00
|
|
|
"jestConfig": "apps/console-ee/jest.config.ts",
|
2022-08-05 21:52:47 +03:00
|
|
|
"passWithNoTests": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-05-09 13:41:15 +03:00
|
|
|
"tags": ["scope:console", "type:app", "meta:legacy"]
|
2022-08-05 21:52:47 +03:00
|
|
|
}
|