mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
chore: support TS
This commit is contained in:
parent
2ecc37bf63
commit
1f4b4d6715
4 changed files with 2935 additions and 4094 deletions
11
package.json
11
package.json
|
@ -18,10 +18,15 @@
|
|||
"cypress": "^3.2.0",
|
||||
"font-awesome": "^4.7.0",
|
||||
"kill-port": "^1.3.2",
|
||||
"laravel-mix": "^1.0.0",
|
||||
"resolve-url-loader": "3.1.1",
|
||||
"laravel-mix": "^5.0.4",
|
||||
"resolve-url-loader": "^3.1.1",
|
||||
"sass": "^1.26.5",
|
||||
"sass-loader": "^8.0.2",
|
||||
"ts-loader": "^7.0.1",
|
||||
"typescript": "^3.8.3",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"wait-on": "^3.2.0",
|
||||
"webpack": "^3.6.0",
|
||||
"webpack": "^4.42.1",
|
||||
"webpack-node-externals": "^1.6.0"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 59898259a743be8cab3763731f3f4c160f30dfa6
|
||||
Subproject commit 06d9f47d69225afeed0328064ea3f4db3d95282d
|
|
@ -38,9 +38,9 @@ if (mix.config.hmr) {
|
|||
.copy('node_modules/font-awesome/fonts', 'public/fonts', false)
|
||||
}
|
||||
|
||||
mix.js('resources/assets/js/app.js', 'public/js')
|
||||
mix.ts('resources/assets/js/app.ts', 'public/js')
|
||||
.sass('resources/assets/sass/app.scss', 'public/css')
|
||||
.js('resources/assets/js/remote/app.js', 'public/js/remote')
|
||||
.ts('resources/assets/js/remote/app.ts', 'public/js/remote')
|
||||
.sass('resources/assets/sass/remote.scss', 'public/css')
|
||||
|
||||
if (mix.config.inProduction) {
|
||||
|
|
Loading…
Reference in a new issue