forked from area17/twill
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Laravel Mix 4 (area17#113)
* Update to Laravel Mix 4 * update Mix * update laravel-mix to 4.0.13 * switch out node-sass for sass
- Loading branch information
1 parent
fa78d3f
commit 1969d3e
Showing
5 changed files
with
8,002 additions
and
9,700 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
["@babel/preset-env", { | ||
"modules": false, | ||
"targets": { | ||
"browsers": [ | ||
">0.25%", | ||
"not ie 11", | ||
"not op_mini all" | ||
] | ||
} | ||
}], | ||
"stage-2" | ||
"targets": [ | ||
">0.25%", | ||
"not ie 11", | ||
"not op_mini all" | ||
] | ||
}] | ||
], | ||
"plugins": [ | ||
"@babel/plugin-proposal-class-properties" | ||
], | ||
"env": { | ||
"test": { | ||
"presets": ["env", "stage-2"] | ||
"presets": ["@babel/env"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.