This repository was archived by the owner on Sep 12, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ module.exports = function() {
11
11
// REQUIRED DEPS
12
12
if ( ! hasRequiredDeps ( [ "sapper" ] ) ) return false ;
13
13
14
- /** everything below now assumes that we are within vue */
14
+ /** everything below now assumes that we are within Sapper */
15
15
16
16
const possibleArgsArrs = scanScripts ( {
17
17
preferredScriptsArr : [ "dev" , "start" ] ,
@@ -24,13 +24,13 @@ module.exports = function() {
24
24
}
25
25
26
26
return {
27
- type : "vue-cli " ,
27
+ type : "sapper " ,
28
28
command : getYarnOrNPMCommand ( ) ,
29
29
port : 8888 ,
30
30
proxyPort : 3000 ,
31
31
env : { ...process . env } ,
32
32
possibleArgsArrs,
33
33
urlRegexp : new RegExp ( `(http://)([^:]+:)${ 3000 } (/)?` , "g" ) ,
34
- dist : "dist "
34
+ dist : "static "
35
35
} ;
36
36
} ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ module.exports = function() {
11
11
// REQUIRED DEPS
12
12
if ( ! hasRequiredDeps ( [ "svelte" ] ) ) return false ;
13
13
14
- /** everything below now assumes that we are within vue */
14
+ /** everything below now assumes that we are within svelte */
15
15
16
16
const possibleArgsArrs = scanScripts ( {
17
17
preferredScriptsArr : [ "dev" , "start" , "run" ] ,
@@ -31,6 +31,6 @@ module.exports = function() {
31
31
env : { ...process . env } ,
32
32
possibleArgsArrs,
33
33
urlRegexp : new RegExp ( `(http://)([^:]+:)${ 5000 } (/)?` , "g" ) ,
34
- dist : "dist "
34
+ dist : "static "
35
35
} ;
36
36
} ;
You can’t perform that action at this time.
0 commit comments