2022-08-05 21:52:47 +03:00
|
|
|
{
|
2023-02-28 22:41:18 +03:00
|
|
|
"name": "console-legacy-ce",
|
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": "libs/console/legacy-ce/src",
|
2022-08-05 21:52:47 +03:00
|
|
|
"projectType": "library",
|
2023-05-09 13:41:15 +03:00
|
|
|
"tags": ["scope:console", "type:feature", "meta:legacy"],
|
2022-08-05 21:52:47 +03:00
|
|
|
"targets": {
|
|
|
|
"lint": {
|
|
|
|
"executor": "@nrwl/linter:eslint",
|
|
|
|
"outputs": ["{options.outputFile}"],
|
|
|
|
"options": {
|
2023-05-09 13:41:15 +03:00
|
|
|
"lintFilePatterns": ["libs/console/legacy-ce/**/*.{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/libs/console/legacy-ce"],
|
2022-08-05 21:52:47 +03:00
|
|
|
"options": {
|
2022-10-20 19:20:35 +03:00
|
|
|
"jestConfig": "libs/console/legacy-ce/jest.config.ts",
|
2022-08-05 21:52:47 +03:00
|
|
|
"passWithNoTests": true
|
|
|
|
}
|
2022-08-30 11:03:14 +03:00
|
|
|
},
|
|
|
|
"storybook": {
|
|
|
|
"executor": "@nrwl/storybook:storybook",
|
|
|
|
"options": {
|
|
|
|
"port": 4400,
|
2023-02-28 22:41:18 +03:00
|
|
|
"configDir": "libs/console/legacy-ce/.storybook"
|
2022-08-30 11:03:14 +03:00
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"ci": {
|
|
|
|
"quiet": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"build-storybook": {
|
|
|
|
"executor": "@nrwl/storybook:build",
|
2023-02-28 22:41:18 +03:00
|
|
|
"outputs": ["{options.outputDir}"],
|
2022-08-30 11:03:14 +03:00
|
|
|
"options": {
|
2023-02-28 22:41:18 +03:00
|
|
|
"configDir": "libs/console/legacy-ce/.storybook",
|
|
|
|
"outputDir": "dist/storybook/console/legacy-ce"
|
2023-02-02 13:02:40 +03:00
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"ci": {
|
|
|
|
"quiet": true
|
|
|
|
}
|
2022-08-30 11:03:14 +03:00
|
|
|
}
|
|
|
|
},
|
2023-02-23 14:33:07 +03:00
|
|
|
"chromatic": {
|
|
|
|
"executor": "@hasura/internal-plugin:chromatic",
|
|
|
|
"dependsOn": ["build-storybook"],
|
|
|
|
"inputs": ["{workspaceRoot}/dist/storybook/console/legacy-ce"]
|
|
|
|
},
|
2023-02-02 13:02:40 +03:00
|
|
|
"test-storybook": {
|
|
|
|
"executor": "nx:run-commands",
|
|
|
|
"options": {
|
|
|
|
"command": "test-storybook -c libs/console/legacy-ce/.storybook --url=http://localhost:4400"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"ci": {
|
|
|
|
"command": "start-server-and-test 'nx run console-legacy-ce:storybook' 4400 'nx run console-legacy-ce:test-storybook'"
|
|
|
|
}
|
2022-08-30 11:03:14 +03:00
|
|
|
}
|
2022-08-05 21:52:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|