Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions .github/workflows/check-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,15 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: actions/setup-python@v1.1.1
- uses: actions/setup-python@v2
with:
python-version: "3.7"
python-version: "3.8"
- name: Check whether or not unnecessary modules are installed.
run: ./utils/check-unnecessary-modules
- name: Check whether or not necessary modules are up-to-date.
run: |
npm install --production
if [ -n "$(git diff -- ./node_modules)" ]; then
echo "Modules are not up-to-date."
exit 1
fi
git diff --exit-code -- ./node_modules
check-traspilation:
name: Check whether or not transpilation is completed.
runs-on: ubuntu-latest
Expand All @@ -40,10 +37,7 @@ jobs:
with:
node-version: 12.x
- name: Check transpilation
run: |+
run: |
npm install
npm run build
if [ -n "$(git diff -- ./lib)" ]; then
echo "Transpilation has not been completed."
exit 1
fi
git diff --exit-code -- ./lib
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- ubuntu-latest
- macOS-latest
swift-version:
- 5.2.2
- DEVELOPMENT-SNAPSHOT-2020-04-17-a
- 5.2.4
- DEVELOPMENT-SNAPSHOT-2020-06-04-a
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The MIT License (MIT)
Copyright (c) 2019 YOCKOW
Copyright (c) 2019-2020 YOCKOW

Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
Expand Down
4 changes: 2 additions & 2 deletions node_modules/lodash/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 2 additions & 21 deletions node_modules/lodash/core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions node_modules/lodash/core.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

93 changes: 71 additions & 22 deletions node_modules/lodash/lodash.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading