eslint-config-scratch 9.0.3 → 9.0.5

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 @@
1
+ @scratchfoundation/scratch-engineering
@@ -0,0 +1,30 @@
1
+ name: Build eslint-config-scratch
2
+
3
+ on:
4
+ push:
5
+ permissions:
6
+ contents: write # publish a GitHub release
7
+ pages: write # deploy to GitHub Pages
8
+ issues: write # comment on released issues
9
+ pull-requests: write # comment on released pull requests
10
+ jobs:
11
+ build-eslint:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
15
+ - uses: wagoid/commitlint-github-action@5ce82f5d814d4010519d15f0552aec4f17a1e1fe # v5
16
+ - name: Use Node.js 18
17
+ uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e # v1
18
+ with:
19
+ node-version: 18.x
20
+ - name: Install Dependencies
21
+ run: npm install
22
+ - name: Test
23
+ run: npm test
24
+ - name: Semantic Release
25
+ if: github.ref == 'refs/heads/master' && github.event_name == 'push'
26
+ env:
27
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
+ run: npx --no -- semantic-release
30
+
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [9.0.5](https://github.com/scratchfoundation/eslint-config-scratch/compare/v9.0.4...v9.0.5) (2024-02-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.11 ([a8dd4a9](https://github.com/scratchfoundation/eslint-config-scratch/commit/a8dd4a9bebc9fd21a2b8b983fa71a5c8bf665d12))
12
+
13
+ ## [9.0.4](https://github.com/scratchfoundation/eslint-config-scratch/compare/v9.0.3...v9.0.4) (2024-02-21)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.10 ([7d54925](https://github.com/scratchfoundation/eslint-config-scratch/commit/7d54925d6fff02699f1690a6596b131083683978))
19
+
6
20
  ## [9.0.3](https://github.com/LLK/eslint-config-scratch/compare/v9.0.2...v9.0.3) (2023-07-01)
7
21
 
8
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-scratch",
3
- "version": "9.0.3",
3
+ "version": "9.0.5",
4
4
  "description": "Shareable ESLint config for Scratch",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,14 +12,14 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/LLK/eslint-config-scratch.git"
15
+ "url": "https://github.com/scratchfoundation/eslint-config-scratch.git"
16
16
  },
17
17
  "author": "Massachusetts Institute of Technology",
18
18
  "license": "BSD-3-Clause",
19
19
  "bugs": {
20
- "url": "https://github.com/LLK/eslint-config-scratch/issues"
20
+ "url": "https://github.com/scratchfoundation/eslint-config-scratch/issues"
21
21
  },
22
- "homepage": "https://github.com/LLK/eslint-config-scratch#readme",
22
+ "homepage": "https://github.com/scratchfoundation/eslint-config-scratch#readme",
23
23
  "keywords": [
24
24
  "eslint",
25
25
  "eslintconfig",
@@ -33,12 +33,12 @@
33
33
  "eslint": "^8.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@babel/eslint-parser": "7.17.0",
37
- "@commitlint/cli": "17.1.2",
38
- "@commitlint/config-conventional": "17.1.0",
39
- "eslint": "8.15.0",
40
- "husky": "8.0.1",
41
- "scratch-semantic-release-config": "1.0.8",
36
+ "@babel/eslint-parser": "7.23.10",
37
+ "@commitlint/cli": "17.8.1",
38
+ "@commitlint/config-conventional": "17.8.1",
39
+ "eslint": "8.56.0",
40
+ "husky": "8.0.3",
41
+ "scratch-semantic-release-config": "1.0.11",
42
42
  "semantic-release": "19.0.5"
43
43
  },
44
44
  "config": {
package/renovate.json5 CHANGED
@@ -2,6 +2,6 @@
2
2
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
3
 
4
4
  "extends": [
5
- "github>LLK/scratch-renovate-config:conservative"
5
+ "github>scratchfoundation/scratch-renovate-config:js-lib"
6
6
  ]
7
7
  }
@@ -1,32 +0,0 @@
1
- version: 2.1
2
- orbs:
3
- commitlint: conventional-changelog/commitlint@1.0.0
4
- node: circleci/node@5.0.3
5
- alias:
6
- - &defaults
7
- docker:
8
- - image: cimg/node:18.12.1
9
- executor: node/default
10
- jobs:
11
- main-job:
12
- <<: *defaults
13
- steps:
14
- - checkout
15
- - node/install-packages
16
- - run: npm test
17
- - run: npx --no -- semantic-release
18
- workflows:
19
- version: 2
20
- commitlint:
21
- jobs:
22
- - commitlint/lint:
23
- target-branch: master
24
- filters:
25
- branches:
26
- ignore:
27
- - master
28
- main-workflow:
29
- jobs:
30
- - main-job:
31
- context:
32
- - scratch-npm-creds