mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
1c942fe69e
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9006 Co-authored-by: Nicolas Inchauspe <710410+nicoinch@users.noreply.github.com> Co-authored-by: Brandon Simmons <210815+jberryman@users.noreply.github.com> Co-authored-by: Daniele Cammareri <5709409+dancamma@users.noreply.github.com> Co-authored-by: Daniel Harvey <4729125+danieljharvey@users.noreply.github.com> Co-authored-by: Rishichandra Wawhal <27274869+wawhal@users.noreply.github.com> Co-authored-by: Samir Talwar <47582+SamirTalwar@users.noreply.github.com> Co-authored-by: Anon Ray <616387+ecthiender@users.noreply.github.com> Co-authored-by: Tom Harding <6302310+i-am-tom@users.noreply.github.com> Co-authored-by: Gil Mizrahi <8547573+soupi@users.noreply.github.com> Co-authored-by: John Kiragu <11444316+kigsmtua@users.noreply.github.com> Co-authored-by: Matthew Goodwin <49927862+m4ttheweric@users.noreply.github.com> Co-authored-by: Divi <32202683+imperfect-fourth@users.noreply.github.com> Co-authored-by: paritosh-08 <85472423+paritosh-08@users.noreply.github.com> Co-authored-by: Aaysha <109507451+aayshasura@users.noreply.github.com> Co-authored-by: Vijay Prasanna <11921040+vijayprasanna13@users.noreply.github.com> Co-authored-by: Erik Magnusson <32518962+ejkkan@users.noreply.github.com> GitOrigin-RevId: fe4953db62326fb3a8de118f8bba2add9bb9c2c2
71 lines
1.9 KiB
JSON
71 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": ["scope:shared", "type:feature", "meta:package"],
|
|
"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,json}"
|
|
]
|
|
}
|
|
},
|
|
"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": {
|
|
"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"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|