Skip to content

Commit 607c050

Browse files
authored
Merge pull request #40 from YOCKOW/development
Release v1.1.4.
2 parents 91a7bbe + c9a41e4 commit 607c050

File tree

11 files changed

+2054
-981
lines changed

11 files changed

+2054
-981
lines changed

.github/workflows/check-commits.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,15 @@ jobs:
1919
- uses: actions/setup-node@v1
2020
with:
2121
node-version: 12.x
22-
- uses: actions/setup-python@v1.1.1
22+
- uses: actions/setup-python@v2
2323
with:
24-
python-version: "3.7"
24+
python-version: "3.8"
2525
- name: Check whether or not unnecessary modules are installed.
2626
run: ./utils/check-unnecessary-modules
2727
- name: Check whether or not necessary modules are up-to-date.
2828
run: |
2929
npm install --production
30-
if [ -n "$(git diff -- ./node_modules)" ]; then
31-
echo "Modules are not up-to-date."
32-
exit 1
33-
fi
30+
git diff --exit-code -- ./node_modules
3431
check-traspilation:
3532
name: Check whether or not transpilation is completed.
3633
runs-on: ubuntu-latest
@@ -40,10 +37,7 @@ jobs:
4037
with:
4138
node-version: 12.x
4239
- name: Check transpilation
43-
run: |+
40+
run: |
4441
npm install
4542
npm run build
46-
if [ -n "$(git diff -- ./lib)" ]; then
47-
echo "Transpilation has not been completed."
48-
exit 1
49-
fi
43+
git diff --exit-code -- ./lib

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- ubuntu-latest
2020
- macOS-latest
2121
swift-version:
22-
- 5.2.2
23-
- DEVELOPMENT-SNAPSHOT-2020-04-17-a
22+
- 5.2.4
23+
- DEVELOPMENT-SNAPSHOT-2020-06-04-a
2424
runs-on: ${{ matrix.os }}
2525
steps:
2626
- uses: actions/checkout@master

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The MIT License (MIT)
2-
Copyright (c) 2019 YOCKOW
2+
Copyright (c) 2019-2020 YOCKOW
33

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

node_modules/lodash/README.md

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/lodash/core.js

Lines changed: 2 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/lodash/core.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/lodash/lodash.js

Lines changed: 71 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)