the-tip-top-backend/node_modules/tdigest/gruntfile.js
2025-10-22 20:40:47 +00:00

17 lines
394 B
JavaScript

module.exports = function(grunt) {
var pkg = grunt.file.readJSON('package.json');
grunt.initConfig({
pure_cjs: {
options: {
exports: 'tdigest',
comments: true
},
'dist/tdigest.js': 'tdigest.js'
}
});
grunt.task.loadNpmTasks('grunt-pure-cjs');
grunt.registerTask('dist', ['pure_cjs']);
}