@beauraines/sprint-tracker 0.6.18 → 0.6.20

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
@@ -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,10 @@
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
+ ### [0.6.20](https://github.com/beauraines/sprint-tracker/compare/v0.6.19...v0.6.20) (2024-06-22)
6
+
7
+ ### [0.6.19](https://github.com/beauraines/sprint-tracker/compare/v0.6.18...v0.6.19) (2024-06-21)
8
+
5
9
  ### [0.6.18](https://github.com/beauraines/sprint-tracker/compare/v0.6.17...v0.6.18) (2024-06-05)
6
10
 
7
11
 
@@ -0,0 +1,36 @@
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
+ ...globals.node
16
+ }
17
+ },
18
+ rules: {
19
+ // Add your rules here
20
+ }
21
+ },
22
+ {
23
+ files: ["**/*.test.js", "**/__tests__/**/*.js"], // Apply Jest configurations to test files
24
+ languageOptions: {
25
+ globals: {
26
+ ...globals.jest, // Merging Jest globals
27
+ },
28
+ },
29
+ plugins: {
30
+ jest: jestPlugin,
31
+ },
32
+ rules: {
33
+ ...jestPlugin.configs.recommended.rules, // Use recommended rules from eslint-plugin-jest
34
+ }
35
+ }
36
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/sprint-tracker",
3
- "version": "0.6.18",
3
+ "version": "0.6.20",
4
4
  "description": "Database and R visualizations to track sprint performance",
5
5
  "main": "cli.js",
6
6
  "bin": {
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "homepage": "https://github.com/beauraines/sprint-tracker#readme",
33
33
  "devDependencies": {
34
- "eslint": "^8.42.0",
35
- "eslint-plugin-jest": "^27.2.1",
34
+ "eslint": "^9.5.0",
35
+ "eslint-plugin-jest": "^28.6.0",
36
36
  "jest": "^29.3.1"
37
37
  },
38
38
  "dependencies": {
@@ -42,7 +42,7 @@
42
42
  "helpers": "npm:@beauraines/node-helpers@^2.4.0",
43
43
  "node-db-migration": "^1.4.0",
44
44
  "prompt-sync": "^4.2.0",
45
- "should-release": "^1.2.0",
45
+ "should-release": "github:beauraines/should-release",
46
46
  "sqlite": "^5.1.1",
47
47
  "sqlite3": "^5.1.2",
48
48
  "standard-version": "^9.5.0",
package/.eslintrc.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "env": {
3
- "browser": true,
4
- "commonjs": true,
5
- "es2021": true,
6
- "node": true
7
- },
8
- "extends": "eslint:recommended",
9
- "overrides": [
10
- ],
11
- "parserOptions": {
12
- "ecmaVersion": "latest"
13
- },
14
- "rules": {
15
- }
16
- }