Skip to content

Commit 83a4b3b

Browse files
committed
Release v3.0.0
1 parent 45d0a09 commit 83a4b3b

8 files changed

+1662
-2691
lines changed

CHANGES.MD

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.0.0
2+
3+
- Update all dev depencencies.
4+
- BREAKING: Now using named export, `Fireworks` instead of default export.
5+
16
## 2.6.2
27

38
- Add `height` and `width` properties to `FireworksOptions` typescript definition

README.MD

+5-12
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ npm install --save fireworks-canvas
1212
## usage
1313

1414
```js
15-
import * as Fireworks from 'fireworks-canvas' // mjs
15+
import { Fireworks } from 'fireworks-canvas' // mjs
1616

17-
const Fireworks = require('fireworks-canvas') // cjs
17+
const { Fireworks } = require('fireworks-canvas') // cjs
1818

19-
requirejs(['Fireworks'], Fireworks => {}) // amd
19+
requirejs(['Fireworks'], ({ Fireworks }) => {}) // amd
2020

21-
const Fireworks = window.Fireworks // browser global
21+
const { Fireworks } = window.Fireworks // browser global
2222

2323
// needs at least a container element, you can provide options
2424
// (options are optional, defaults defined below)
@@ -61,14 +61,7 @@ fireworks.onFinish(() => container.remove()) // callback when the last firework
6161
## usage with typscript
6262

6363
```ts
64-
import * as FireworksCanvas from 'fireworks-canvas'
65-
const fireworks = new FireworksCanvas(container)
66-
```
67-
68-
OR
69-
70-
```ts
71-
import FireworksCanvas = require('fireworks-canvas')
64+
import { Fireworks } from 'fireworks-canvas'
7265
const fireworks = new FireworksCanvas(container)
7366
```
7467

fireworks.node.js fireworks.cjs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,4 +253,4 @@ class Fireworks {
253253
}
254254
}
255255

256-
module.exports = Fireworks;
256+
exports.Fireworks = Fireworks;

fireworks.js

+30-23
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
(function (global, factory) {
2-
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
3-
typeof define === 'function' && define.amd ? define('Fireworks', factory) :
4-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Fireworks = factory());
5-
}(this, (function () { 'use strict';
2+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
3+
typeof define === 'function' && define.amd ? define('Fireworks', ['exports'], factory) :
4+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.Fireworks = {}));
5+
})(this, (function (exports) { 'use strict';
66

7-
/*! *****************************************************************************
7+
/******************************************************************************
88
Copyright (c) Microsoft Corporation.
99
1010
Permission to use, copy, modify, and/or distribute this software for any
@@ -18,6 +18,8 @@
1818
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1919
PERFORMANCE OF THIS SOFTWARE.
2020
***************************************************************************** */
21+
/* global Reflect, Promise, SuppressedError, Symbol */
22+
2123

2224
var __assign = function() {
2325
__assign = Object.assign || function __assign(t) {
@@ -40,7 +42,12 @@
4042
}
4143
};
4244
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
43-
}
45+
}
46+
47+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
48+
var e = new Error(message);
49+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
50+
};
4451

4552
function random(min, max) {
4653
return Math.random() * (max - min) + min;
@@ -56,7 +63,7 @@
5663
if (this.isRocket) {
5764
this.velocity = {
5865
x: random(-3, 3),
59-
y: random(-7, -3)
66+
y: random(-7, -3),
6067
};
6168
this.shrink = 0.999;
6269
this.resistance = 1;
@@ -66,7 +73,7 @@
6673
var speed = Math.cos(random(0, TAU)) * 15;
6774
this.velocity = {
6875
x: Math.cos(angle) * speed,
69-
y: Math.sin(angle) * speed
76+
y: Math.sin(angle) * speed,
7077
};
7178
this.shrink = random(0, 0.05) + 0.93;
7279
this.resistance = 0.92;
@@ -82,10 +89,10 @@
8289
return new Particle({
8390
position: {
8491
x: this.position.x,
85-
y: this.position.y
92+
y: this.position.y,
8693
},
8794
hue: this.hue,
88-
brightness: this.brightness
95+
brightness: this.brightness,
8996
});
9097
};
9198
Particle.prototype.shouldRemove = function (cw, ch) {
@@ -130,7 +137,7 @@
130137
ctx.lineTo(this.position.x, this.position.y);
131138
ctx.lineWidth = this.size;
132139
ctx.lineCap = 'round';
133-
ctx.strokeStyle = "hsla(" + this.hue + ", 100%, " + this.brightness + "%, " + this.alpha + ")";
140+
ctx.strokeStyle = "hsla(".concat(this.hue, ", 100%, ").concat(this.brightness, "%, ").concat(this.alpha, ")");
134141
ctx.stroke();
135142
};
136143
return Particle;
@@ -161,8 +168,8 @@
161168
this._set.clear();
162169
this.rockets = 0;
163170
};
164-
Things.prototype["delete"] = function (thing) {
165-
this._set["delete"](thing);
171+
Things.prototype.delete = function (thing) {
172+
this._set.delete(thing);
166173
if (thing.isRocket)
167174
this.rockets--;
168175
};
@@ -173,15 +180,15 @@
173180
for (var i = 0; i < this.numParticles; i += 1) {
174181
this.add(particle.clone());
175182
}
176-
this["delete"](particle);
183+
this.delete(particle);
177184
};
178185
Things.prototype.spawnRocket = function () {
179186
this.rockets++;
180187
var cannonIndex = Math.floor(random(0, this.cannons.length));
181188
var cannon = this.cannons[cannonIndex] || {};
182189
this.add(new Particle({
183190
isRocket: true,
184-
position: __assign(__assign(__assign({}, cannon), (cannon.x == null && { x: random(0, this.cw) })), (cannon.y == null && { y: this.ch }))
191+
position: __assign(__assign(__assign({}, cannon), (cannon.x == null && { x: random(0, this.cw) })), (cannon.y == null && { y: this.ch })),
185192
}));
186193
};
187194
Things.prototype.spawnRockets = function () {
@@ -214,7 +221,7 @@
214221
cw: this.cw,
215222
ch: this.ch,
216223
rocketInitialPoint: rocketInitialPoint,
217-
cannons: cannons
224+
cannons: cannons,
218225
});
219226
this.updateDimensions();
220227
}
@@ -234,8 +241,8 @@
234241
Fireworks.prototype.updateDimensions = function () {
235242
this.canvas.width = this.cw * this.pixelRatio;
236243
this.canvas.height = this.ch * this.pixelRatio;
237-
this.canvas.style.width = this.cw + "px";
238-
this.canvas.style.height = this.ch + "px";
244+
this.canvas.style.width = "".concat(this.cw, "px");
245+
this.canvas.style.height = "".concat(this.ch, "px");
239246
this.ctx.scale(this.pixelRatio, this.pixelRatio);
240247
this.things.cw = this.cw;
241248
this.things.ch = this.ch;
@@ -273,7 +280,7 @@
273280
Fireworks.prototype._clear = function (force) {
274281
if (force === void 0) { force = false; }
275282
this.ctx.globalCompositeOperation = 'destination-out';
276-
this.ctx.fillStyle = "rgba(0, 0, 0 " + (force ? '' : ', 0.5') + ")";
283+
this.ctx.fillStyle = "rgba(0, 0, 0 ".concat(force ? '' : ', 0.5', ")");
277284
this.ctx.fillRect(0, 0, this.cw, this.ch);
278285
this.ctx.globalCompositeOperation = 'lighter';
279286
};
@@ -292,7 +299,7 @@
292299
particle.draw(this.ctx);
293300
particle.update();
294301
if (particle.shouldRemove(this.cw, this.ch)) {
295-
this.things["delete"](particle);
302+
this.things.delete(particle);
296303
}
297304
else if (particle.shouldExplode(this.maxH, this.minH, this.chance)) {
298305
this.things.explode(particle);
@@ -302,7 +309,7 @@
302309
catch (e_1_1) { e_1 = { error: e_1_1 }; }
303310
finally {
304311
try {
305-
if (_c && !_c.done && (_a = _b["return"])) _a.call(_b);
312+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
306313
}
307314
finally { if (e_1) throw e_1.error; }
308315
}
@@ -316,6 +323,6 @@
316323
return Fireworks;
317324
}());
318325

319-
return Fireworks;
326+
exports.Fireworks = Fireworks;
320327

321-
})));
328+
}));

0 commit comments

Comments
 (0)