Skip to content

Commit 66cc1a2

Browse files
authored
Merge pull request #131 from bvaughn/4.0.0
Version 4.0.0
2 parents a0a370c + 9a91190 commit 66cc1a2

31 files changed

+5217
-1282
lines changed

.github/workflows/jest.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "Jest unit tests"
2+
on: [pull_request]
3+
jobs:
4+
tests-e2e:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- uses: actions/setup-node@v3
9+
- uses: pnpm/action-setup@v2
10+
with:
11+
version: 7
12+
- name: Install dependencies
13+
run: pnpm install
14+
- name: Build NPM packages
15+
run: pnpm run prerelease
16+
- name: Run tests
17+
run: pnpm run test

.github/workflows/prettier.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "Prettier"
2+
on: [pull_request]
3+
jobs:
4+
tests-e2e:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- uses: actions/setup-node@v3
9+
- uses: pnpm/action-setup@v2
10+
with:
11+
version: 7
12+
- name: Install dependencies
13+
run: pnpm install
14+
- name: Build NPM packages
15+
run: pnpm run prerelease
16+
- name: Run Prettier
17+
run: pnpm run prettier:ci

.github/workflows/typescript.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "TypeScript"
2+
on: [pull_request]
3+
jobs:
4+
tests-e2e:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- uses: actions/setup-node@v3
9+
- uses: pnpm/action-setup@v2
10+
with:
11+
version: 7
12+
- name: Install dependencies
13+
run: pnpm install
14+
- name: Build NPM packages
15+
run: pnpm run prerelease
16+
- name: Run TypeScript
17+
run: pnpm run typescript

.github/workflows/validate.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

.gitignore

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
node_modules
2-
coverage
31
dist
4-
.DS_Store
2+
node_modules
53

6-
# these cause more harm than good
7-
# when working with contributors
8-
package-lock.json
9-
yarn.lock
4+
.DS_Store
5+
.cache
6+
*.log
7+
.parcel-cache
8+
.pnp.*

.huskyrc.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
node_modules
2-
coverage
1+
.parcel-cache
32
dist
3+
node_modules

.prettierrc.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"trailingComma": "es5",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": false
6+
}

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# CHANGELOG
22

3-
The changelog is automatically updated using
4-
[semantic-release](https://github.com/semantic-release/semantic-release). You
5-
can see it on the [releases page](../../releases).
3+
See the [releases page](../../releases).

0 commit comments

Comments
 (0)