Skip to content

Commit f15e08e

Browse files
authored
Merge pull request #17 from upsetjs/release/v3.0.1
Release v3.0.1
2 parents 191707e + d0e2209 commit f15e08e

File tree

6 files changed

+3083
-3261
lines changed

6 files changed

+3083
-3261
lines changed

.yarn/releases/yarn-4.10.3.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-4.5.1.cjs

Lines changed: 0 additions & 934 deletions
This file was deleted.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
yarnPath: .yarn/releases/yarn-4.5.1.cjs
1+
yarnPath: .yarn/releases/yarn-4.10.3.cjs

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bubblesets-js",
33
"description": "JavaScript implementation of bubble sets by Christopher Collins",
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"author": {
66
"name": "Samuel Gratzl",
77
"email": "sam@sgratzl.com",
@@ -47,31 +47,31 @@
4747
"src/**/*.ts"
4848
],
4949
"devDependencies": {
50-
"@babel/core": "^7.26.0",
51-
"@babel/preset-env": "^7.26.0",
52-
"@eslint/js": "^9.15.0",
50+
"@babel/core": "^7.28.4",
51+
"@babel/preset-env": "^7.28.3",
52+
"@eslint/js": "^9.37.0",
5353
"@rollup/plugin-babel": "^6.0.4",
54-
"@rollup/plugin-commonjs": "^28.0.1",
55-
"@rollup/plugin-node-resolve": "^15.3.0",
56-
"@rollup/plugin-replace": "^6.0.1",
57-
"@rollup/plugin-typescript": "^12.1.1",
58-
"@vitest/coverage-v8": "^2.1.5",
59-
"@yarnpkg/sdks": "^3.2.0",
60-
"eslint": "~9.14.0",
61-
"eslint-plugin-prettier": "^5.2.1",
62-
"jsdom": "^25.0.1",
63-
"prettier": "^3.3.3",
54+
"@rollup/plugin-commonjs": "^28.0.6",
55+
"@rollup/plugin-node-resolve": "^16.0.2",
56+
"@rollup/plugin-replace": "^6.0.2",
57+
"@rollup/plugin-typescript": "^12.1.4",
58+
"@vitest/coverage-v8": "^3.2.4",
59+
"@yarnpkg/sdks": "^3.2.3",
60+
"eslint": "^9.37.0",
61+
"eslint-plugin-prettier": "^5.5.4",
62+
"jsdom": "^27.0.0",
63+
"prettier": "^3.6.2",
6464
"rimraf": "^6.0.1",
65-
"rollup": "^4.27.2",
66-
"rollup-plugin-dts": "^6.1.1",
65+
"rollup": "^4.52.4",
66+
"rollup-plugin-dts": "^6.2.3",
6767
"rollup-plugin-terser": "^7.0.2",
68-
"ts-jest": "^29.2.5",
68+
"ts-jest": "^29.4.4",
6969
"tslib": "^2.8.1",
70-
"typedoc": "^0.26.11",
71-
"typescript": "^5.6.3",
72-
"typescript-eslint": "^8.14.0",
73-
"vite": "^5.4.11",
74-
"vitest": "^2.1.5"
70+
"typedoc": "^0.28.13",
71+
"typescript": "^5.9.3",
72+
"typescript-eslint": "^8.45.0",
73+
"vite": "^7.1.9",
74+
"vitest": "^3.2.4"
7575
},
7676
"scripts": {
7777
"clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"",
@@ -91,5 +91,5 @@
9191
"docs": "typedoc --options typedoc.json",
9292
"prepare": "yarn run build"
9393
},
94-
"packageManager": "yarn@4.5.1"
94+
"packageManager": "yarn@4.10.3"
9595
}

src/model/Area.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class Area {
1212
public readonly pixelY = 0,
1313
public readonly width: number = 10,
1414
public readonly height: number = 10,
15-
pixels = new Float32Array(Math.max(0, width * height)).fill(0)
15+
pixels: Float32Array = new Float32Array(Math.max(0, width * height)).fill(0)
1616
) {
1717
this.area = pixels;
1818
}

0 commit comments

Comments
 (0)