eslint-config-brightspace 0.20.0 → 0.20.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-brightspace",
3
- "version": "0.20.0",
3
+ "version": "0.20.1",
4
4
  "description": "Common Brightspace eslint configs.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -15,6 +15,22 @@
15
15
  "eslint",
16
16
  "eslintconfig"
17
17
  ],
18
+ "files": [
19
+ "browser-config.js",
20
+ "common-config.js",
21
+ "index.js",
22
+ "lit-config.js",
23
+ "node-config.js",
24
+ "open-wc-testing-config.js",
25
+ "polymer-3-config.js",
26
+ "polymer-config.js",
27
+ "polymer-sort-member-config.js",
28
+ "react-config.js",
29
+ "sort-member-config.js",
30
+ "wct-config.js",
31
+ "wct-lit-config.js",
32
+ "wct-polymer-3-config.js"
33
+ ],
18
34
  "author": "D2L Corporation",
19
35
  "license": "Apache-2.0",
20
36
  "bugs": {
@@ -1 +0,0 @@
1
- * @Brightspace/gaudi-dev
@@ -1,25 +0,0 @@
1
- name: Release
2
- on:
3
- push:
4
- branches:
5
- - main
6
- - '[0-9]+.x'
7
- - '[0-9]+.[0-9]+.x'
8
- jobs:
9
- release:
10
- if: "!contains(github.event.head_commit.message, 'skip ci')"
11
- timeout-minutes: 2
12
- runs-on: ubuntu-latest
13
- steps:
14
- - name: Checkout
15
- uses: Brightspace/third-party-actions@actions/checkout
16
- with:
17
- persist-credentials: false
18
- - name: Setup Node
19
- uses: Brightspace/third-party-actions@actions/setup-node
20
- - name: Semantic Release
21
- uses: BrightspaceUI/actions/semantic-release@main
22
- with:
23
- GITHUB_TOKEN: ${{ secrets.D2L_GITHUB_TOKEN }}
24
- NPM: true
25
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package/.releaserc.json DELETED
@@ -1,28 +0,0 @@
1
- {
2
- "branches": [
3
- "+([0-9])?(.{+([0-9]),x}).x",
4
- "main",
5
- "next",
6
- "next-major",
7
- {"name": "beta", "prerelease": true},
8
- {"name": "alpha", "prerelease": true}
9
- ],
10
- "plugins": [
11
- "@semantic-release/commit-analyzer",
12
- "@semantic-release/github",
13
- [
14
- "@semantic-release/npm",
15
- {
16
- "npmPublish": true
17
- }
18
- ],
19
- "@semantic-release/release-notes-generator",
20
- [
21
- "@semantic-release/git",
22
- {
23
- "assets": ["package.json"],
24
- "message": "chore(release): ${nextRelease.version} [skip ci]"
25
- }
26
- ]
27
- ]
28
- }