@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.
@@ -0,0 +1,8 @@
1
+ # Set to true to add reviewers to pull requests
2
+ addReviewers: true
3
+
4
+ # Set to true to add assignees to pull requests
5
+ addAssignees: false
6
+
7
+ reviewers:
8
+ - beauraines
@@ -14,3 +14,8 @@ updates:
14
14
  prefix: fix
15
15
  prefix-development: chore
16
16
  include: scope
17
+ groups:
18
+ dev-dependencies:
19
+ dependency-type: "development"
20
+ patterns:
21
+ - "*"
@@ -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
 
@@ -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.7",
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": "^8.34.0",
57
- "eslint-plugin-jest": "^27.2.1",
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
  },
package/.eslintrc.json DELETED
@@ -1,15 +0,0 @@
1
- {
2
- "env": {
3
- "browser": true,
4
- "commonjs": true,
5
- "es2021": true
6
- },
7
- "extends": "eslint:recommended",
8
- "overrides": [
9
- ],
10
- "parserOptions": {
11
- "ecmaVersion": "latest"
12
- },
13
- "rules": {
14
- }
15
- }