Adding edittable version 2023-01-14 (66785d9).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
51b386fcf7
commit
778f9ac0bf
101 changed files with 56770 additions and 0 deletions
21
plugins/55/edittable/Gruntfile.js
Normal file
21
plugins/55/edittable/Gruntfile.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
module.exports = function (grunt) {
|
||||
grunt.initConfig({
|
||||
pkg: grunt.file.readJSON('package.json'), // the package file to use
|
||||
eslint: {
|
||||
target: ['script', '_jstest']
|
||||
},
|
||||
qunit: {
|
||||
all: ['_jstest/*.html']
|
||||
},
|
||||
watch: {
|
||||
files: ['_jstest/*.js', '_jstest/*.html', 'script/*.js'],
|
||||
tasks: ['qunit', 'eslint']
|
||||
}
|
||||
});
|
||||
grunt.loadNpmTasks('grunt-contrib-qunit');
|
||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||
grunt.loadNpmTasks('grunt-eslint');
|
||||
grunt.registerTask('default', ['qunit']);
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue