Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
joszz committed Dec 21, 2022
1 parent 7f439b0 commit 149ccf2
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 61 deletions.
7 changes: 6 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@ css/
js/
icons/
Chell.phpproj*
Chell.sln
.git*/
.vs/
.vs/
.dockerignore
.editorconfig
.stignore
Dockerfile
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ gulp.task('build_styles', () => {
})
)
.pipe(header(config.banner.main, { package: package }))
.pipe(sourcemaps.write())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(config.output_path + config.styles.output_path));
});

Expand All @@ -78,7 +78,7 @@ gulp.task('scripts', () => {
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(header(config.banner.main, { package: package }))
.pipe(sourcemaps.write())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(config.output_path + config.scripts.output_path));
});

Expand Down
129 changes: 72 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"chartjs-plugin-datalabels": "^2.1.0",
"chartjs-plugin-streaming": "^2.0.0",
"color-calendar": "^1.0.7",
"jquery": "^3.6.2",
"jquery": "^3.6.3",
"jquery-fullscreen-plugin": "^1.1.5",
"jquery-tinytimer": "^0.1.4",
"jquery.isloading": "github:joszz/is-loading",
Expand Down

0 comments on commit 149ccf2

Please sign in to comment.