mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-02-18 04:19:42 +00:00
Serve minified css
This commit is contained in:
@@ -4,12 +4,12 @@
|
|||||||
{% block title %}Calendar{% endblock %}
|
{% block title %}Calendar{% endblock %}
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
<link href="{% static 'css/main.min.css' %}" rel='stylesheet' />
|
<link href="{% static 'css/main.css' %}" rel='stylesheet' />
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
<script src="{% static 'js/moment.js' %}"></script>
|
<script src="{% static 'js/moment.js' %}"></script>
|
||||||
<script src="{% static 'js/main.min.js' %}"></script>
|
<script src="{% static 'js/main.js' %}"></script>
|
||||||
<script>
|
<script>
|
||||||
viewToUrl = {
|
viewToUrl = {
|
||||||
'timeGridWeek':'week',
|
'timeGridWeek':'week',
|
||||||
|
|||||||
@@ -11,18 +11,19 @@ var sourcemaps = require('gulp-sourcemaps');
|
|||||||
var browsersync = require('browser-sync').create();
|
var browsersync = require('browser-sync').create();
|
||||||
var { exec } = require("child_process");
|
var { exec } = require("child_process");
|
||||||
var spawn = require('child_process').spawn;
|
var spawn = require('child_process').spawn;
|
||||||
|
var cssnano = require('cssnano');
|
||||||
|
|
||||||
sass.compiler = require('node-sass');
|
sass.compiler = require('node-sass');
|
||||||
|
|
||||||
function styles(done) {
|
function styles(done) {
|
||||||
return gulp.src(['pipeline/source_assets/scss/**/*.scss',
|
return gulp.src(['pipeline/source_assets/scss/**/*.scss',
|
||||||
'node_modules/fullcalendar/main.min.css',
|
'node_modules/fullcalendar/main.css',
|
||||||
'node_modules/bootstrap-select/dist/css/bootstrap-select.css',
|
'node_modules/bootstrap-select/dist/css/bootstrap-select.css',
|
||||||
'node_modules/ajax-bootstrap-select/dist/css/ajax-bootstrap-select.css',
|
'node_modules/ajax-bootstrap-select/dist/css/ajax-bootstrap-select.css',
|
||||||
'node_modules/flatpickr/dist/flatpickr.css'])
|
'node_modules/flatpickr/dist/flatpickr.css'])
|
||||||
.pipe(sourcemaps.init())
|
.pipe(sourcemaps.init())
|
||||||
.pipe(sass().on('error', sass.logError))
|
.pipe(sass().on('error', sass.logError))
|
||||||
.pipe(postcss([ autoprefixer() ]))
|
.pipe(postcss([ autoprefixer(), cssnano() ]))
|
||||||
.pipe(sourcemaps.write())
|
.pipe(sourcemaps.write())
|
||||||
.pipe(gulp.dest('pipeline/built_assets/css'))
|
.pipe(gulp.dest('pipeline/built_assets/css'))
|
||||||
.pipe(browsersync.stream());
|
.pipe(browsersync.stream());
|
||||||
@@ -49,7 +50,7 @@ function scripts() {
|
|||||||
'node_modules/flatpickr/dist/flatpickr.min.js',
|
'node_modules/flatpickr/dist/flatpickr.min.js',
|
||||||
'node_modules/@fortawesome/fontawesome-free/js/all.js',
|
'node_modules/@fortawesome/fontawesome-free/js/all.js',
|
||||||
'node_modules/moment/moment.js',
|
'node_modules/moment/moment.js',
|
||||||
'node_modules/fullcalendar/main.min.js',
|
'node_modules/fullcalendar/main.js',
|
||||||
'node_modules/bootstrap-select/dist/js/bootstrap-select.js',
|
'node_modules/bootstrap-select/dist/js/bootstrap-select.js',
|
||||||
'node_modules/ajax-bootstrap-select/dist/js/ajax-bootstrap-select.js',
|
'node_modules/ajax-bootstrap-select/dist/js/ajax-bootstrap-select.js',
|
||||||
'node_modules/konami/konami.js',
|
'node_modules/konami/konami.js',
|
||||||
|
|||||||
2208
package-lock.json
generated
2208
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -13,6 +13,7 @@
|
|||||||
"bootstrap": "^4.5.2",
|
"bootstrap": "^4.5.2",
|
||||||
"bootstrap-select": "^1.13.17",
|
"bootstrap-select": "^1.13.17",
|
||||||
"clipboard": "^2.0.6",
|
"clipboard": "^2.0.6",
|
||||||
|
"cssnano": "^4.1.10",
|
||||||
"dark-mode-switch": "^1.0.0",
|
"dark-mode-switch": "^1.0.0",
|
||||||
"flatpickr": "^4.6.6",
|
"flatpickr": "^4.6.6",
|
||||||
"fullcalendar": "^5.3.2",
|
"fullcalendar": "^5.3.2",
|
||||||
|
|||||||
Reference in New Issue
Block a user