Skip to content

Commit c25af29

Browse files
Merge pull request #1117 from Accenture/develop
Release 6.0.0
2 parents 688d820 + 0667788 commit c25af29

File tree

125 files changed

+2499
-12059
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+2499
-12059
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"plugin:prettier/recommended",
1111
"plugin:unicorn/recommended"
1212
],
13-
"plugins": [],
13+
"plugins": ["prettier"],
1414
"globals": {
1515
"Atomics": "readonly",
1616
"SharedArrayBuffer": "readonly"

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ body:
3939
label: Version
4040
description: What version of our software are you running? (mcdev --version)
4141
options:
42+
- 6.0.0
4243
- 5.3.0
4344
- 5.2.0
4445
- 5.1.0

.github/workflows/coverage-develop-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Prepare for Report Coverage (mini)
3333
run: |
34-
npx nyc report --reporter json-summary --exclude-after-remap false
34+
npx c8 report --reporter json-summary --exclude-after-remap false
3535
3636
- name: Upload coverage artifact
3737
uses: actions/upload-artifact@v3

.github/workflows/coverage-main-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Prepare for Report Coverage (mini)
3333
run: |
34-
npx nyc report --reporter json-summary --exclude-after-remap false
34+
npx c8 report --reporter json-summary --exclude-after-remap false
3535
3636
- name: Upload coverage artifact
3737
uses: actions/upload-artifact@v3

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Prepare for Report Coverage
3030
run: |
31-
npx nyc report --reporter json-summary --exclude-after-remap false
31+
npx c8 report --reporter json-summary --exclude-after-remap false
3232
npm i svelte-to-html@1.0.9
3333
git fetch origin ${{ github.event.pull_request.base.ref }} --depth=1000
3434

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22
"tabWidth": 4,
33
"printWidth": 100,
44
"singleQuote": true,
5+
"trailingComma": "es5",
56
"overrides": [
67
{
78
"files": "*.json",
89
"options": {
910
"parser": "json"
1011
}
1112
},
13+
{
14+
"files": "package.json",
15+
"options": {
16+
"printWidth": 40
17+
}
18+
},
1219
{
1320
"files": "*.ssjs",
1421
"options": {

0 commit comments

Comments
 (0)