graphql-engine/frontend/libs/nx/storybook-addon-console-env/project.json
Nicolas Beaussart f3951e1680 frontend: update nx to latest 15
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8079
Co-authored-by: Stefano Magni <173663+NoriSte@users.noreply.github.com>
GitOrigin-RevId: 46b1ed03ab225fccc9d769203d1af11a6bcdb63e
2023-02-28 19:42:51 +00:00

72 lines
1.9 KiB
JSON

{
"name": "nx-storybook-addon-console-env",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/nx/storybook-addon-console-env/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/js:swc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/nx/storybook-addon-console-env",
"main": "libs/nx/storybook-addon-console-env/src/lib/index.ts",
"tsConfig": "libs/nx/storybook-addon-console-env/tsconfig.lib.json",
"assets": [
"libs/nx/storybook-addon-console-env/*.md",
{
"glob": "**/*",
"input": "libs/nx/storybook-addon-console-env/prod/",
"output": ""
}
]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/nx/storybook-addon-console-env/**/*.{ts,tsx,js,jsx}"
]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": [
"{workspaceRoot}/coverage/libs/nx/storybook-addon-console-env"
],
"options": {
"jestConfig": "libs/nx/storybook-addon-console-env/jest.config.ts",
"passWithNoTests": true
}
},
"storybook": {
"dependsOn": ["build"],
"executor": "@nrwl/storybook:storybook",
"options": {
"uiFramework": "@storybook/react",
"port": 4400,
"configDir": "libs/nx/storybook-addon-console-env/.storybook"
},
"configurations": {
"ci": {
"quiet": true
}
}
},
"publish": {
"executor": "nx:run-commands",
"options": {
"command": "node tools/scripts/publish.mjs nx-storybook-addon-console-env {args.ver} {args.tag}"
},
"dependsOn": [
{
"projects": "self",
"target": "build"
}
]
}
}
}