rollup-plugin-websqz 1.0.4 → 1.0.6
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 +2 -2
- package/package.json +4 -3
- package/scripts/install.js +1 -1
package/README.md
CHANGED
|
@@ -27,9 +27,9 @@ websqz({
|
|
|
27
27
|
Otherwise it will try to resolve websqz from your system PATH.
|
|
28
28
|
*/
|
|
29
29
|
websqzPath: null,
|
|
30
|
-
|
|
30
|
+
fileTransforms: [
|
|
31
31
|
{
|
|
32
|
-
|
|
32
|
+
include: /\.glsl$/,
|
|
33
33
|
transform: async (ctx, id, content) => {
|
|
34
34
|
return {
|
|
35
35
|
content: Buffer.from("Hello World", "utf-8"),
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup-plugin-websqz",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": "./dist/index.js",
|
|
8
8
|
"files": [
|
|
9
9
|
"scripts/install.js",
|
|
10
|
-
"dist",
|
|
11
|
-
"
|
|
10
|
+
"dist/index.js",
|
|
11
|
+
"dist/index.js.map",
|
|
12
|
+
"dist/index.d.ts"
|
|
12
13
|
],
|
|
13
14
|
"keywords": [
|
|
14
15
|
"rollup-plugin",
|
package/scripts/install.js
CHANGED
|
@@ -5,7 +5,7 @@ const path = require("path");
|
|
|
5
5
|
const os = require("os");
|
|
6
6
|
|
|
7
7
|
const RELEASE_BASE_URL = "https://github.com/r00tkids/websqz/releases/download";
|
|
8
|
-
const VERSION = "0.
|
|
8
|
+
const VERSION = "0.4";
|
|
9
9
|
const TOOL_NAME = "websqz";
|
|
10
10
|
const BIN_DIR = path.resolve(__dirname, "../dist/bin");
|
|
11
11
|
|