-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* eslint-disable @typescript-eslint/naming-convention */ | ||
/* eslint-disable quote-props */ | ||
|
||
module.exports = { | ||
'root': true, | ||
'parserOptions': { | ||
'tsconfigRootDir': __dirname, | ||
'project': [ | ||
'tsconfig.json', | ||
'tsconfig.eslint.json' | ||
], | ||
'sourceType': 'module' | ||
}, | ||
'extends': [ | ||
'../../../.eslintrc.js' | ||
] | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"version": "0.0.0-placeholder", | ||
"private": true, | ||
"name": "release-gh-action", | ||
"description": "Git release action provided by Otter", | ||
"main": "tmp/get-previous-version.cjs", | ||
"scripts": { | ||
"nx": "nx", | ||
"build": "tsc -b tsconfig.build.json", | ||
"package": "ncc build --source-map --license LICENSE.txt --out packaged-action" | ||
}, | ||
"keywords": [ | ||
"github-actions", | ||
"github-release", | ||
"otter" | ||
], | ||
"dependencies": { | ||
"minimist": "^1.2.6", | ||
"semver": "^7.5.2", | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@angular-eslint/eslint-plugin": "~18.3.0", | ||
"@nx/eslint-plugin": "~19.5.0", | ||
"@o3r/eslint-config-otter": "workspace:~", | ||
"@o3r/eslint-plugin": "workspace:~", | ||
"@stylistic/eslint-plugin-ts": "~2.4.0", | ||
"@types/minimist": "^1.2.2", | ||
"@types/node": "^20.0.0", | ||
"@types/semver": "^7.3.13", | ||
"@typescript-eslint/eslint-plugin": "^7.14.1", | ||
"@typescript-eslint/parser": "^7.14.1", | ||
"@typescript-eslint/utils": "^7.14.1", | ||
"@vercel/ncc": "~0.38.0", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-jest": "~28.8.0", | ||
"eslint-plugin-jsdoc": "~48.11.0", | ||
"eslint-plugin-prefer-arrow": "~1.2.3", | ||
"eslint-plugin-unicorn": "^54.0.0", | ||
"jsonc-eslint-parser": "~2.4.0", | ||
"typescript": "~5.5.4" | ||
}, | ||
"engines": { | ||
"node": "^18.19.1 || ^20.11.1 || >=22.0.0" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.