UNPKG

m-persian-datepicker

Version:

jQuery datepicker plugin work with Iranian calendar. (Jalali)

103 lines (100 loc) 3.52 kB
const webpackConfig = require('./webpack.config.js'); const webpackDevConfig = require('./webpack.config.dev.js'); const sass = require('node-sass'); module.exports = function (grunt) { require('load-grunt-tasks')(grunt); // Project configuration. grunt.initConfig({ banner: '/*\n' + '** <%= pkg.name %> - v<%= pkg.version %>\n' + '** <%= pkg.author %>\n' + '** <%= pkg.homepage %>\n' + '** Under <%= pkg.license %> license \n' + '*/ \n', usebanner: { dist: { options: { position: 'top', banner: '<%= banner %>' }, files: { src: ['dist/**/*.js', 'dist/**/*.css', 'dist/js/<%= pkg.name %>.js', 'dist/css/<%= pkg.name %>.css'] } } }, pkg: grunt.file.readJSON('package.json'), sass: { dev: { files: { 'dist/css/<%= pkg.name %>.css': 'src/sass/persian-datepicker.scss' } }, prod: { options: { implementation: sass, outputStyle: 'compressed', sourceMap: true }, files: { 'dist/css/<%= pkg.name %>.min.css': 'src/sass/persian-datepicker.scss', } }, theme: { options: { outputStyle: 'compressed', sourceMap: true }, files: { 'dist/css/theme/<%= pkg.name %>-blue.min.css': 'src/sass/theme/<%= pkg.name %>-blue.scss', 'dist/css/theme/<%= pkg.name %>-cheerup.min.css': 'src/sass/theme/<%= pkg.name %>-cheerup.scss', 'dist/css/theme/<%= pkg.name %>-dark.min.css': 'src/sass/theme/<%= pkg.name %>-dark.scss', 'dist/css/theme/<%= pkg.name %>-redblack.min.css': 'src/sass/theme/<%= pkg.name %>-redblack.scss' } } }, watch: { sass: { files: ['src/sass/**/*.scss', 'src/sass/*.scss'], tasks: ['sass'] }, js: { files: ['src/es6/*.js'], tasks: ['webpack:dev'] } }, // options: https://github.com/jsdoc2md/jsdoc-to-markdown/blob/master/docs/API.md#jsdoc2mdrenderoptions--promise jsdoc2md: { config: { options: { 'no-gfm': true, 'heading-depth': 1, 'example-lang': 'js', }, src: 'src/es6/config.js', dest: 'dist/doc/OPTIONS.md' }, api: { options: { 'no-gfm': true, 'heading-depth': 2, 'example-lang': 'js' }, src: 'src/es6/api.js', dest: 'dist/doc/API.md' } }, webpack: { prod: webpackConfig, dev: webpackDevConfig } }); if (grunt.option("dev") === true) { grunt.registerTask('default', ['sass', 'webpack:dev', 'watch']); } else if (grunt.option("doc") === true) { grunt.registerTask('default', ['jsdoc2md']); } else { grunt.registerTask('default', ['sass', 'webpack', 'jsdoc2md', 'usebanner']); } };