Skip to content

Commit

Permalink
regenerate package-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
scottyaslan committed Aug 16, 2024
1 parent fa64f4e commit 7f87e43
Show file tree
Hide file tree
Showing 18 changed files with 1,052 additions and 6 deletions.
18 changes: 18 additions & 0 deletions nifi-frontend/src/main/frontend/apps/nifi-registry/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
}
8 changes: 8 additions & 0 deletions nifi-frontend/src/main/frontend/apps/nifi-registry/.swcrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"jsc": {
"parser": {
"syntax": "typescript"
},
"target": "es2016"
}
}
11 changes: 11 additions & 0 deletions nifi-frontend/src/main/frontend/apps/nifi-registry/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* eslint-disable */
export default {
displayName: 'nifi-registry',
preset: '../../jest.preset.js',
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
transform: {
'^.+\\.[tj]s$': '@swc/jest'
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/apps/nifi-registry'
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "nifi-registry",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/nifi-registry/src",
"tags": [],
"// targets": "to see all targets run: nx show project nifi-registry --web",
"targets": {}
}
Loading

0 comments on commit 7f87e43

Please sign in to comment.