@oliversalzburg/js-utils 0.1.2-dev.98 → 0.1.2
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/README.md +5 -5
- package/graphics/shader.d.ts +1 -1
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
A collection of random utilities for JS/TS development.
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- ESM only.
|
|
8
8
|
|
|
9
|
-
-
|
|
9
|
+
- Tree-shaking in mind. Only subpath-imports are supported.
|
|
10
10
|
|
|
11
|
-
-
|
|
11
|
+
- Consumable with `node` and `nodenext` [module resolution](https://www.typescriptlang.org/tsconfig/#moduleResolution).
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- No runtime dependencies.
|
|
14
14
|
|
|
15
|
-
-
|
|
15
|
+
- All runtime code is licensed under MIT, or fully compatible licenses.
|
|
16
16
|
|
|
17
17
|
## Release Process
|
|
18
18
|
|
package/graphics/shader.d.ts
CHANGED
|
@@ -53,4 +53,4 @@ export declare const createGLProgram: (gl: WebGL2RenderingContext, shaders: Arra
|
|
|
53
53
|
* @param height - Height of the buffer.
|
|
54
54
|
* @returns The buffer.
|
|
55
55
|
*/
|
|
56
|
-
export declare const randomRGData: (width: number, height: number) => Uint8Array
|
|
56
|
+
export declare const randomRGData: (width: number, height: number) => Uint8Array<ArrayBuffer>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@oliversalzburg/js-utils",
|
|
4
|
-
"version": "0.1.2
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
|
|
7
7
|
"repository": {
|
|
@@ -39,32 +39,32 @@
|
|
|
39
39
|
"postversion": "git push"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@eslint/js": "9.
|
|
43
|
-
"@oliversalzburg/eslint-config": "1.
|
|
42
|
+
"@eslint/js": "9.16.0",
|
|
43
|
+
"@oliversalzburg/eslint-config": "1.2.0",
|
|
44
44
|
"@types/chai": "5.0.1",
|
|
45
45
|
"@types/eslint": "9.6.1",
|
|
46
|
-
"@types/mocha": "10.0.
|
|
47
|
-
"@types/node": "22.
|
|
48
|
-
"@types/web": "0.0.
|
|
46
|
+
"@types/mocha": "10.0.10",
|
|
47
|
+
"@types/node": "22.10.1",
|
|
48
|
+
"@types/web": "0.0.183",
|
|
49
49
|
"c8": "10.1.2",
|
|
50
50
|
"chai": "5.1.2",
|
|
51
|
-
"eslint": "9.
|
|
51
|
+
"eslint": "9.16.0",
|
|
52
52
|
"eslint-config-prettier": "9.1.0",
|
|
53
|
-
"eslint-plugin-jsdoc": "50.
|
|
54
|
-
"eslint-plugin-tsdoc": "0.
|
|
55
|
-
"globals": "15.
|
|
53
|
+
"eslint-plugin-jsdoc": "50.6.0",
|
|
54
|
+
"eslint-plugin-tsdoc": "0.4.0",
|
|
55
|
+
"globals": "15.13.0",
|
|
56
56
|
"lint-staged": "15.2.10",
|
|
57
|
-
"mocha": "
|
|
58
|
-
"prettier": "3.
|
|
57
|
+
"mocha": "11.0.1",
|
|
58
|
+
"prettier": "3.4.2",
|
|
59
59
|
"prettier-package-json": "2.8.0",
|
|
60
60
|
"prettier-plugin-organize-imports": "4.1.0",
|
|
61
|
-
"typedoc": "0.
|
|
62
|
-
"typedoc-plugin-mdn-links": "
|
|
63
|
-
"typescript": "5.
|
|
64
|
-
"typescript-eslint": "8.
|
|
61
|
+
"typedoc": "0.27.3",
|
|
62
|
+
"typedoc-plugin-mdn-links": "4.0.3",
|
|
63
|
+
"typescript": "5.7.2",
|
|
64
|
+
"typescript-eslint": "8.17.0"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=18"
|
|
68
68
|
},
|
|
69
|
-
"packageManager": "yarn@4.5.
|
|
69
|
+
"packageManager": "yarn@4.5.3"
|
|
70
70
|
}
|