Skip to content

Commit defa939

Browse files
committed
Merge remote-tracking branch 'makenew/master'
2 parents 38b2983 + fe2a7e1 commit defa939

File tree

9 files changed

+2874
-4500
lines changed

9 files changed

+2874
-4500
lines changed

.nycrc.json renamed to .c8rc.json

File renamed without changes.

.eslintrc.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"root": true,
33
"extends": ["standard", "prettier"],
4-
"parser": "@babel/eslint-parser",
5-
"parserOptions": {
6-
"requireConfigFile": false
7-
},
84
"rules": {
95
"valid-jsdoc": "error",
106
"no-console": "warn",

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Setup Node.js and install dependencies.
44

55
inputs:
66
node_version:
7-
description: The Node.js version
7+
description: The Node.js version.
88
required: false
99
default: '16'
1010
registry_url:

.github/workflows/publish.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,14 @@ jobs:
1515
uses: actions/checkout@v2
1616
- name: Setup
1717
uses: ./.github/actions/setup
18-
with:
19-
node_version: '14'
2018
- name: Publish
2119
uses: JS-DevTools/npm-publish@v1
2220
with:
2321
access: public
2422
token: ${{ secrets.NPM_TOKEN }}
25-
2623
docs:
2724
runs-on: ubuntu-20.04
25+
timeout-minutes: 30
2826
steps:
2927
- name: Checkout
3028
uses: actions/checkout@v2
@@ -54,8 +52,6 @@ jobs:
5452
passphrase: ${{ secrets.GPG_PASSPHRASE }}
5553
- name: Setup
5654
uses: ./.github/actions/setup
57-
with:
58-
node_version: '14'
5955
- name: Get version
6056
id: version
6157
run: |

.gitignore

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Parts of this file were adapted from
22
# GitHub’s collection of .gitignore file templates
3-
# which are Copyright (c) 2021 GitHub, Inc.
3+
# which are Copyright (c) 2022 GitHub, Inc.
44
# and released under the MIT License.
55
# For more details, visit the project page:
66
# https://github.com/github/gitignore
@@ -35,6 +35,7 @@ npm-debug.log*
3535
yarn-debug.log*
3636
yarn-error.log*
3737
lerna-debug.log*
38+
.pnpm-debug.log*
3839

3940
# Diagnostic reports (https://nodejs.org/api/report.html)
4041
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -83,6 +84,9 @@ web_modules/
8384
# Optional eslint cache
8485
.eslintcache
8586

87+
# Optional stylelint cache
88+
.stylelintcache
89+
8690
# Microbundle cache
8791
.rpt2_cache/
8892
.rts2_cache_cjs/
@@ -98,9 +102,12 @@ web_modules/
98102
# Yarn Integrity file
99103
.yarn-integrity
100104

101-
# dotenv environment variables file
105+
# dotenv environment variable files
102106
.env
103-
.env.test
107+
.env.development.local
108+
.env.test.local
109+
.env.production.local
110+
.env.local
104111

105112
# parcel-bundler cache (https://parceljs.org/)
106113
.cache
@@ -123,6 +130,13 @@ dist
123130
# vuepress build output
124131
.vuepress/dist
125132

133+
# vuepress v2.x temp and cache directory
134+
.temp
135+
.cache
136+
137+
# Docusaurus cache and generated files
138+
.docusaurus
139+
126140
# Serverless directories
127141
.serverless/
128142

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2021 Evan Sosenko
3+
Copyright (c) 2022 Evan Sosenko
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

ava.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export default {
22
timeout: '2m',
33
ignoredByWatcher: ['tmp/**/*'],
4-
files: ['**/*.spec.js', '!dist/**/*', '!package/**/*']
4+
files: ['**/*.spec.js', '!package/**/*']
55
}

0 commit comments

Comments
 (0)