13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'lib/generators/rocket_cms/webpack_generator.rb', line 13
def install
copy_file ".babelrc", ".babelrc"
copy_file ".browserlistrc", ".browserlistrc"
copy_file "postcss.config.js", "postcss.config.js"
copy_file "webpack/common/mixins.sass", "webpack/common/mixins.sass"
copy_file "webpack/common/variables.sass", "webpack/common/variables.sass"
copy_file "webpack/common/index.sass", "webpack/common/index.sass"
copy_file "webpack/flash/index.es6", "webpack/flash/index.es6"
copy_file "webpack/flash/index.sass", "webpack/flash/index.sass"
copy_file "webpack/fonts/index.sass", "webpack/fonts/index.sass"
copy_file "webpack/fonts/mixin.sass", "webpack/fonts/mixin.sass"
copy_file "webpack/layout/buttons.sass", "webpack/layout/buttons.sass"
copy_file "webpack/layout/index.sass", "webpack/layout/index.sass"
copy_file "webpack/layout/main.sass", "webpack/layout/main.sass"
copy_file "webpack/layout/typography.sass", "webpack/layout/typography.sass"
copy_file "webpack/components/index.es6", "webpack/components/index.es6"
copy_file "webpack/components/header/index.sass", "webpack/components/header/index.sass"
copy_file "webpack/components/footer/index.sass", "webpack/components/footer/index.sass"
copy_file "webpack/pages/index.es6", "webpack/pages/index.es6"
copy_file "webpack/pages/home/index.es6", "webpack/pages/home/index.es6"
copy_file "webpack/analytics.es6", "webpack/analytics.es6"
copy_file "webpack/application.es6", "webpack/application.es6"
remove_file "package.json"
template "package.json", "package.json"
template "webpack.config.js", "config/webpack.config.js"
end
|