Skip to content

Commit ca35059

Browse files
authored
Bugfix filter condition (#4)
* add idea file to ignore * bugfix * update notify text style * update readme
1 parent 1e2b714 commit ca35059

9 files changed

+59576
-47711
lines changed

.eslintrc.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true
5+
},
6+
extends: 'standard-with-typescript',
7+
overrides: [
8+
],
9+
parserOptions: {
10+
ecmaVersion: 'latest',
11+
sourceType: 'module',
12+
project: './tsconfig.json',
13+
},
14+
rules: {
15+
}
16+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
crashlytics-to-wrike-config.json
22
lib
3+
.idea
34

45
# Created by https://www.gitignore.io/api/node
56

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
## 環境
2-
node v12
2+
node v16
33

44
## リリース手順
55
nccを使っています。nccをインストールした上で下のコマンドを順番に実行する
66

77
- npm install
88
- npm run publish
99

10+
出力されたlib/index.jsを含めてcommit.
11+
リリースするcommitでタグをきる。使う側はそのタグを指定して利用する。
12+
1013
## 使い方
1114
GitHub Actionsで実行することを想定しています。
1215

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ inputs:
99
required: false
1010

1111
runs:
12-
using: 'node12'
12+
using: 'node16'
1313
main: 'dist/index.js'

dist/index.js

+56,039-46,505
Large diffs are not rendered by default.

dist/license.txt

+500-17
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)