adding initial fast-api
This commit is contained in:
20
fast-api/bower_components/Morphext/Gruntfile.coffee
vendored
Normal file
20
fast-api/bower_components/Morphext/Gruntfile.coffee
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
module.exports = (grunt) ->
|
||||
grunt.initConfig
|
||||
pkg: grunt.file.readJSON 'package.json'
|
||||
|
||||
uglify:
|
||||
options:
|
||||
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
|
||||
'<%= grunt.template.today("yyyy-mm-dd") %> */'
|
||||
dist:
|
||||
files:
|
||||
'dist/morphext.min.js': ['dist/morphext.js']
|
||||
|
||||
eslint:
|
||||
all: ['dist/morphext.js']
|
||||
|
||||
grunt.loadNpmTasks 'grunt-contrib-uglify'
|
||||
grunt.loadNpmTasks 'grunt-eslint'
|
||||
|
||||
grunt.registerTask 'default', ['test', 'uglify']
|
||||
grunt.registerTask 'test', ['eslint']
|
||||
Reference in New Issue
Block a user