first commit, after modifying client section

This commit is contained in:
Kwesi Banson
2023-02-22 07:48:50 +00:00
commit ad0dd6a6e1
1880 changed files with 538494 additions and 0 deletions

30
public/assets/vendors/starrr/Gruntfile.coffee vendored Executable file
View File

@@ -0,0 +1,30 @@
module.exports = (grunt) ->
grunt.loadNpmTasks('grunt-contrib-coffee')
grunt.loadNpmTasks('grunt-contrib-sass')
grunt.loadNpmTasks('grunt-contrib-watch')
grunt.loadNpmTasks('grunt-release')
grunt.initConfig
pkg: '<json:package.json>'
coffee:
all:
src: 'src/starrr.coffee'
dest: 'dist/starrr.js'
options:
bare: true
sass:
all:
files:
'dist/starrr.css': 'src/starrr.scss'
options:
sourcemap: 'none'
watch:
all:
files: ['src/starrr.coffee', 'src/starrr.scss']
tasks: 'default'
grunt.registerTask 'default', ['coffee:all', 'sass:all']