Skip to content

Commit

Permalink
lintの指摘に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
machida committed Sep 6, 2021
1 parent b8e3961 commit 200add6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module.exports = function(api) {
var validEnv = ['development', 'test', 'production']
var currentEnv = api.env()
var isDevelopmentEnv = api.env('development')
var isProductionEnv = api.env('production')
var isTestEnv = api.env('test')
const validEnv = ['development', 'test', 'production']
const currentEnv = api.env()
const isDevelopmentEnv = api.env('development')
const isProductionEnv = api.env('production')
const isTestEnv = api.env('test')

if (!validEnv.includes(currentEnv)) {
throw new Error(
Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/highlight.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/assets/javascripts/jquery-ui-1.10.2.custom.min.js

Large diffs are not rendered by default.

0 comments on commit 200add6

Please sign in to comment.