remove bower and grunt js

This commit is contained in:
2021-03-21 11:43:35 +01:00
parent f4c556812e
commit 371da5d9bf
6 changed files with 0 additions and 263 deletions

View File

@@ -1,46 +0,0 @@
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
chillperson: {
folders: {
pub: './public',
css: '<%= chillperson.folders.pub %>/css/',
sass: '<%= chillperson.folders.pub %>/sass/',
}
},
sass: {
dist: {
options: {
debugInfo: false,
},
files: [{
expand: true,
cwd: '<%= chillperson.folders.sass.src %>',
src: ['*.scss'],
dest: '<%= chillperson.folders.css %>',
ext: '.css'
}]
}
},
watch: {
css: {
files: [ '<%= chillperson.folders.sass %>/*.scss', '<%= chillperson.folders.sass %>/**/*.scss' ],
tasks: ['generatecss'],
/*
options: {
spawn: false,
interrupt: true,
}
*/
}
},
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('generatecss', 'sass');
grunt.registerTask('default', ['generatecss']);
};

View File

@@ -1,16 +0,0 @@
{
"name": "chill-person-js-css",
"version": "0.0.0",
"description": "JS-CSS files for ChillPerson Bundle, a software for social workers",
"directories": {
},
"author": "Champs-Libres <info@champs-libres.coop>",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-sass": "^0.8.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-clean": "^0.6.0"
},
"dependencies": {}
}