File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ module.exports = function(
87
87
return Promise . all (
88
88
[ writeMain ( mainFilename , modules ) ] . concat (
89
89
modules . map ( function ( modul ) {
90
- return writeFile ( path . join ( generatedDir , "classes " ) , modul ) ;
90
+ return writeFile ( path . join ( generatedDir , "styles " ) , modul ) ;
91
91
} )
92
92
)
93
93
) . then ( function ( ) {
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ function moduleHeader(moduleName /*: string */) {
44
44
return (
45
45
"module " +
46
46
moduleName +
47
- ".Css exposing (..)\n\n" +
47
+ ".Styles exposing (..)\n\n" +
48
48
"{-| This file was generated by the elm-css binary. Don't edit it, because it will be overwritten!\n-}\n\n" +
49
49
"import Html\nimport Html.Attributes\n\n\n"
50
50
) ;
@@ -71,7 +71,7 @@ function writeFile(
71
71
mkdirp ( directory , function ( dirError ) {
72
72
if ( dirError ) return reject ( dirError ) ;
73
73
74
- const filename = path . join ( directory , "Css .elm" ) ;
74
+ const filename = path . join ( directory , "Styles .elm" ) ;
75
75
fs . writeFile ( filename , generateModule ( modul ) , function ( fileError ) {
76
76
if ( fileError ) return reject ( fileError ) ;
77
77
You can’t perform that action at this time.
0 commit comments