Skip to content

Commit 036356c

Browse files
author
Arkadiusz Adamski
committed
WIP - add webpack and remove gulp
1 parent e29eb03 commit 036356c

File tree

13 files changed

+13140
-56
lines changed

13 files changed

+13140
-56
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ var/
2424
*.egg-info/
2525
.installed.cfg
2626
*.egg
27-
package-lock.json
28-
27+
.venv
2928
# PyInstaller
3029
# Usually these files are written by a python script from a template
3130
# before PyInstaller builds the exe, so as to inject date/other infos into it.

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14.16.0

gulpfile.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ var sass_config = {
2727
]
2828
}
2929

30-
gulp.task('bower', function() {
30+
gulp.task('bower', function() {
3131
return bower()
32-
.pipe(gulp.dest(config.bowerDir))
32+
.pipe(gulp.dest(config.bowerDir))
3333
});
3434

3535
gulp.task('scss', function() {
@@ -41,19 +41,19 @@ gulp.task('scss', function() {
4141
.pipe(gulp.dest(config.staticRoot + 'css/'))
4242
});
4343

44-
gulp.task('css', function() {
44+
gulp.task('css', function() {
4545
var vendorFiles = [
4646
'bower_components/normalize.css/normalize.css',
4747
'bower_components/foundation-datepicker/css/foundation-datepicker.css',
4848
'bower_components/angular-loading-bar/build/loading-bar.min.css',
4949
];
50-
return gulp.src(vendorFiles)
51-
.pipe(gulp.dest(config.vendorRoot + 'css/'));
50+
return gulp.src(vendorFiles)
51+
.pipe(gulp.dest(config.vendorRoot + 'css/'));
5252
});
5353

54-
gulp.task('fonts', function() {
55-
return gulp.src('bower_components/fontawesome/fonts/*.*')
56-
.pipe(gulp.dest(config.vendorRoot + 'fonts/'));
54+
gulp.task('fonts', function() {
55+
return gulp.src('bower_components/fontawesome/fonts/*.*')
56+
.pipe(gulp.dest(config.vendorRoot + 'fonts/'));
5757
});
5858

5959
gulp.task('js', function(){

0 commit comments

Comments
 (0)