Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
  • Loading branch information
wcalderipe committed Mar 20, 2024
1 parent b3cdafc commit 9901046
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 35 deletions.
29 changes: 7 additions & 22 deletions apps/policy-engine/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,14 @@
"targets": {
"build": {
"executor": "@nx/webpack:webpack",
"outputs": [
"{options.outputPath}"
],
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"target": "node",
"compiler": "tsc",
"outputPath": "dist/apps/policy-engine",
"main": "apps/policy-engine/src/main.ts",
"assets": [
"apps/policy-engine/src/open-policy-agent/resource",
"apps/policy-engine/src/open-policy-agent/core/rego"
],
"assets": ["apps/policy-engine/src/resource"],
"tsConfig": "apps/policy-engine/tsconfig.app.json",
"isolatedConfig": true,
"webpackConfig": "apps/policy-engine/webpack.config.js"
Expand All @@ -45,13 +40,9 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": [
"{options.outputFile}"
],
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"apps/policy-engine/**/*.ts"
]
"lintFilePatterns": ["apps/policy-engine/**/*.ts"]
}
},
"test:type": {
Expand All @@ -62,19 +53,15 @@
},
"test:unit": {
"executor": "@nx/jest:jest",
"outputs": [
"{workspaceRoot}/coverage/{projectRoot}"
],
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/policy-engine/jest.unit.ts",
"verbose": true
}
},
"test:integration": {
"executor": "@nx/jest:jest",
"outputs": [
"{workspaceRoot}/coverage/{projectRoot}"
],
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/policy-engine/jest.integration.ts",
"verbose": true,
Expand All @@ -83,9 +70,7 @@
},
"test:e2e": {
"executor": "@nx/jest:jest",
"outputs": [
"{workspaceRoot}/coverage/{projectRoot}"
],
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/policy-engine/jest.e2e.ts",
"verbose": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ package main
{{#reason this}}{{/reason}}
}

{{/each}}
{{/each}}

0 comments on commit 9901046

Please sign in to comment.