-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ui5 plugin generation failing (#6)
* Migrated package json to new versions * change test module * Added latest code for generate FLP Plugin removed unwanted code * Pre commit rules added * removed local file * fixed flp start * prepare command modified * Update main.yml * Updated node version of working & setup node * Fixed review comments Fixes #5 --------- Co-authored-by: Amar Ubhe <[email protected]> Co-authored-by: Amar Ubhe <i545363>
- Loading branch information
Showing
56 changed files
with
10,612 additions
and
1,051 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,9 @@ jobs: | |
node: [0, 1, 2, 3] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 14 | ||
node-version: 18 | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- run: git config --global user.email "[email protected]" && git config --global user.name "Your Name" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# Hidden Files | ||
_ | ||
test/*/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Dependency directories | ||
node_modules/ | ||
yarn.lock | ||
package-lock.json | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npm run hooks:pre-commit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
if (process.env.HUSKY_SKIP || process.env.NODE_ENV === "production") { | ||
process.exit(0); | ||
} else { | ||
process.exit(1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"*.js": "eslint" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
generators/newwebapp/templates/uimodule/ui5.yaml | ||
# Ignore test files | ||
test/*/ | ||
|
||
# Ignore all source files using the placeholders to kill the syntax | ||
generators/app/templates/webapp/Component.js | ||
generators/app/templates/webapp/test/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import globals from "globals"; | ||
import js from "@eslint/js"; | ||
import jsdoc from "eslint-plugin-jsdoc"; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
jsdoc.configs["flat/recommended"], | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.node | ||
}, | ||
ecmaVersion: 2023, | ||
sourceType: "module" | ||
}, | ||
rules: { | ||
"no-unused-vars": "warn" | ||
} | ||
}, | ||
{ | ||
ignores: [ | ||
"eslint.config.js", | ||
|
||
// Ignore node_files | ||
"node_modules/", | ||
|
||
// Ignore templates | ||
"generators/*/templates/", | ||
|
||
// Ignore test files | ||
"test/" | ||
] | ||
} | ||
]; |
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
generators/additionalmodules/templates/approuter/package.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.