[example][m] - start of ckan-example

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-19 12:35:37 -03:00
parent 83bffccf52
commit 234bbcec49
26 changed files with 688 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
{
"name": "ckan-example",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "examples/ckan-example",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/next:build",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"root": "examples/ckan-example",
"outputPath": "dist/examples/ckan-example"
},
"configurations": {
"development": {
"outputPath": "examples/ckan-example"
},
"production": {}
}
},
"serve": {
"executor": "@nrwl/next:server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "ckan-example:build",
"dev": true
},
"configurations": {
"development": {
"buildTarget": "ckan-example:build:development",
"dev": true
},
"production": {
"buildTarget": "ckan-example:build:production",
"dev": false
}
}
},
"export": {
"executor": "@nrwl/next:export",
"options": {
"buildTarget": "ckan-example:build:production"
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "examples/ckan-example/jest.config.ts",
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["examples/ckan-example/**/*.{ts,tsx,js,jsx}"]
}
}
},
"tags": []
}