mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
e84933775d
Allows running of scripts defined in the package.json of a Mix package, through Artisan.
18 lines
395 B
Plaintext
18 lines
395 B
Plaintext
{
|
|
"presets": [
|
|
"@babel/preset-env"
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-transform-runtime",
|
|
[
|
|
"module-resolver", {
|
|
"root": ["./tests/js"],
|
|
"alias": {
|
|
"helpers": "./helpers",
|
|
"snowboard": "../../modules/system/assets/js/snowboard",
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|