Skip to content
This repository was archived by the owner on Dec 30, 2021. It is now read-only.

Commit 143e0dd

Browse files
authored
Merge pull request #146 from kaimallea/next-dev
Trigger initial next release
2 parents b03f24f + 95977da commit 143e0dd

56 files changed

Lines changed: 14048 additions & 10984 deletions

Some content is hidden

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

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module.exports = {
22
env: {
3-
commonjs: true,
43
es2021: true,
54
node: true,
65
jest: true,
76
},
87
extends: ['eslint:recommended', 'prettier'],
98
parserOptions: {
109
ecmaVersion: 12,
10+
sourceType: 'module',
1111
},
1212
rules: {},
1313
};

.github/workflows/preview-semantic-release.yaml

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

.github/workflows/release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- next
78

89
jobs:
910
release:
@@ -21,12 +22,12 @@ jobs:
2122
node-version: 14
2223
- name: Install dependencies
2324
run: npm ci
24-
- name: Build
25-
run: npm run build --if-present
2625
- name: Run linters
2726
run: npm run lint
2827
- name: Run tests
2928
run: npm test
29+
- name: Build
30+
run: npm run build --if-present
3031
- name: Release
3132
env:
3233
GH_TOKEN: ${{ secrets.GH_TOKEN }}

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
node-version: ${{ matrix.node-version }}
2525
- name: Install dependencies
2626
run: npm ci
27-
- name: Build
28-
run: npm run build --if-present
2927
- name: Run linters
3028
run: npm run lint
3129
- name: Run tests
3230
run: npm test
31+
- name: Build
32+
run: npm run build --if-present

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
lib

.npmignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.prettierignore
2+
.eslintrc.js
3+
.prettierrc.json
4+
.releaserc.json
5+
.husky
6+
.github
7+
8+
jest.*.js
9+
babel.config.json
10+
tsconfig.json
11+
12+
src
13+
14+
CODE_OF_CONDUCT.md
15+
CONTRIBUTING.md

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
2+
lib
23
package-lock.json
34
.github

.releaserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"branches": [
33
{ "name": "main" },
4-
{ "name": "next", "channel": "next" },
4+
{ "name": "next", "channel": "next", "prerelease": true },
55
{ "name": "beta", "prerelease": true },
66
{ "name": "alpha", "prerelease": true }
77
]

0 commit comments

Comments
 (0)