@beauraines/rtm-cli 1.8.7 → 1.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/auto_assign.yml +8 -0
- package/.github/dependabot.yml +5 -0
- package/.github/workflows/auto-assign-PR.yml +14 -0
- package/CHANGELOG.md +7 -0
- package/eslint.config.js +35 -0
- package/package.json +3 -3
- package/.eslintrc.json +0 -15
package/.github/dependabot.yml
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: Auto-assign reviewers for Dependabot PRs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request_target:
|
|
5
|
+
types: [opened, reopened]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
assign-reviewers:
|
|
9
|
+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- name: Assign reviewers
|
|
13
|
+
uses: kentaro-m/auto-assign-action@v2.0.0
|
|
14
|
+
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.8.8](https://github.com/beauraines/rtm-cli/compare/v1.8.7...v1.8.8) (2024-06-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** bump debug from 4.3.4 to 4.3.5 ([#100](https://github.com/beauraines/rtm-cli/issues/100)) ([771d050](https://github.com/beauraines/rtm-cli/commit/771d0501042267559959ee85892c7ed6e0cf015f))
|
|
11
|
+
|
|
5
12
|
### [1.8.7](https://github.com/beauraines/rtm-cli/compare/v1.8.6...v1.8.7) (2023-08-12)
|
|
6
13
|
|
|
7
14
|
|
package/eslint.config.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const globals = require("globals");
|
|
2
|
+
const jestPlugin = require("eslint-plugin-jest");
|
|
3
|
+
const js = require("@eslint/js"); // Assuming the recommended config is imported from @eslint/js
|
|
4
|
+
|
|
5
|
+
module.exports = [
|
|
6
|
+
js.configs.recommended,
|
|
7
|
+
{
|
|
8
|
+
languageOptions: {
|
|
9
|
+
ecmaVersion: "latest",
|
|
10
|
+
sourceType: "module",
|
|
11
|
+
globals: {
|
|
12
|
+
...globals.browser,
|
|
13
|
+
...globals.commonjs,
|
|
14
|
+
...globals.es2021
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
rules: {
|
|
18
|
+
// Add your rules here
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
files: ["**/*.test.js", "**/__tests__/**/*.js"], // Apply Jest configurations to test files
|
|
23
|
+
languageOptions: {
|
|
24
|
+
globals: {
|
|
25
|
+
...globals.jest, // Merging Jest globals
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
plugins: {
|
|
29
|
+
jest: jestPlugin,
|
|
30
|
+
},
|
|
31
|
+
rules: {
|
|
32
|
+
...jestPlugin.configs.recommended.rules, // Use recommended rules from eslint-plugin-jest
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beauraines/rtm-cli",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.8",
|
|
4
4
|
"description": "RTM CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rtm",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"archiver": "^5.3.1",
|
|
56
|
-
"eslint": "^
|
|
57
|
-
"eslint-plugin-jest": "^
|
|
56
|
+
"eslint": "^9.5.0",
|
|
57
|
+
"eslint-plugin-jest": "^28.6.0",
|
|
58
58
|
"jest": "^29.4.3",
|
|
59
59
|
"pkg": "^5.8.0"
|
|
60
60
|
},
|