File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " laravel-cookie-consent" ,
3
3
"scripts" : {
4
- "test" : " echo \" Error: no test specified\" && exit 1"
4
+ "test" : " echo \" Error: no test specified\" && exit 1" ,
5
+ "dev" : " npm run development" ,
6
+ "development" : " mix" ,
7
+ "watch" : " mix watch" ,
8
+ "watch-poll" : " mix watch -- --watch-options-poll=1000" ,
9
+ "hot" : " mix watch --hot" ,
10
+ "prod" : " npm run production" ,
11
+ "production" : " mix --production"
5
12
},
6
13
"devDependencies" : {
7
- "laravel-mix" : " ^6.0.49"
14
+ "laravel-mix" : " ^6.0.49" ,
15
+ "resolve-url-loader" : " ^5.0.0" ,
16
+ "sass" : " ^1.63.2" ,
17
+ "sass-loader" : " ^12.1.0" ,
18
+ "axios" : " ^1.4.0"
8
19
}
9
20
}
Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ let mix = require('laravel-mix');
2
2
3
3
mix . setPublicPath ( 'dist' )
4
4
. js ( 'resources/js/script.js' , 'dist' )
5
+ . sass ( 'resources/scss/app.scss' , 'dist' )
5
6
. version ( ) ;
You can’t perform that action at this time.
0 commit comments