firetruss-worker 2.6.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Gruntfile.js +0 -8
- package/dist/worker.es2015.js +482 -554
- package/dist/worker.es2015.js.map +1 -1
- package/dist/worker.umd.js +484 -556
- package/dist/worker.umd.js.map +1 -1
- package/dist/worker.umd.min.js +1 -1
- package/dist/worker.umd.min.js.map +1 -1
- package/package.json +7 -10
- package/src/worker.js +1 -1
- package/bower.json +0 -23
package/Gruntfile.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/* eslint-env node */
|
|
2
|
-
'use strict';
|
|
3
2
|
|
|
4
|
-
const buble = require('@rollup/plugin-buble');
|
|
5
3
|
const nodeResolve = require('@rollup/plugin-node-resolve').nodeResolve;
|
|
6
4
|
const commonjs = require('@rollup/plugin-commonjs');
|
|
7
5
|
|
|
@@ -45,11 +43,6 @@ module.exports = function(grunt) {
|
|
|
45
43
|
},
|
|
46
44
|
plugins: [
|
|
47
45
|
commonjs(),
|
|
48
|
-
buble({
|
|
49
|
-
transforms: {
|
|
50
|
-
dangerousForOf: true
|
|
51
|
-
}
|
|
52
|
-
}),
|
|
53
46
|
nodeResolve({
|
|
54
47
|
resolveOnly: ['bogus'] // an empty array argument gets ignored
|
|
55
48
|
})
|
|
@@ -104,7 +97,6 @@ module.exports = function(grunt) {
|
|
|
104
97
|
|
|
105
98
|
release: {
|
|
106
99
|
options: {
|
|
107
|
-
additionalFiles: ['bower.json'],
|
|
108
100
|
afterBump: ['replace --release=<%= version %>'],
|
|
109
101
|
beforeRelease: ['default'],
|
|
110
102
|
afterRelease: ['exec:reset']
|