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

Commit

Permalink
Merge pull request #146 from kaimallea/next-dev
Browse files Browse the repository at this point in the history
Trigger initial next release
  • Loading branch information
kaimallea authored Mar 23, 2021
2 parents b03f24f + 95977da commit 143e0dd
Show file tree
Hide file tree
Showing 56 changed files with 14,048 additions and 10,984 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module.exports = {
env: {
commonjs: true,
es2021: true,
node: true,
jest: true,
},
extends: ['eslint:recommended', 'prettier'],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
rules: {},
};
26 changes: 0 additions & 26 deletions .github/workflows/preview-semantic-release.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- next

jobs:
release:
Expand All @@ -21,12 +22,12 @@ jobs:
node-version: 14
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Run linters
run: npm run lint
- name: Run tests
run: npm test
- name: Build
run: npm run build --if-present
- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Run linters
run: npm run lint
- name: Run tests
run: npm test
- name: Build
run: npm run build --if-present
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
node_modules
lib
15 changes: 15 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.prettierignore
.eslintrc.js
.prettierrc.json
.releaserc.json
.husky
.github

jest.*.js
babel.config.json
tsconfig.json

src

CODE_OF_CONDUCT.md
CONTRIBUTING.md
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
lib
package-lock.json
.github
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"branches": [
{ "name": "main" },
{ "name": "next", "channel": "next" },
{ "name": "next", "channel": "next", "prerelease": true },
{ "name": "beta", "prerelease": true },
{ "name": "alpha", "prerelease": true }
]
Expand Down
Loading

0 comments on commit 143e0dd

Please sign in to comment.