@peachy/plugin-runner 0.0.10 → 0.0.11
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/dist/index.mjs +1 -1
- package/package.json +9 -8
package/dist/index.mjs
CHANGED
|
@@ -47,7 +47,7 @@ function gjsRunner({ sendMessage, debug, setReloadHandler, options: runnerOption
|
|
|
47
47
|
let firstRun = true;
|
|
48
48
|
return {
|
|
49
49
|
name: "@peachy/plugin-runner",
|
|
50
|
-
writeBundle(options, bundle) {
|
|
50
|
+
async writeBundle(options, bundle) {
|
|
51
51
|
const entryName = Object.keys(bundle)[0];
|
|
52
52
|
const entry = options.file || resolve(options.dir || "dist", entryName);
|
|
53
53
|
setReloadHandler(() => {
|
package/package.json
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peachy/plugin-runner",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "0.0.11",
|
|
5
4
|
"description": "Run your GJS applications",
|
|
6
|
-
"main": "./dist/index.mjs",
|
|
7
|
-
"author": "",
|
|
8
5
|
"license": "MIT",
|
|
6
|
+
"author": "",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"type": "module",
|
|
11
|
+
"main": "./dist/index.mjs",
|
|
9
12
|
"devDependencies": {
|
|
10
13
|
"@types/node": "^25.2.2",
|
|
11
14
|
"rolldown": "1.0.0-rc.3",
|
|
12
15
|
"tsdown": "0.20.3",
|
|
13
|
-
"typescript": "^5.9.3"
|
|
16
|
+
"typescript": "^5.9.3",
|
|
17
|
+
"@peachy/internal-utilities": "0.0.0"
|
|
14
18
|
},
|
|
15
19
|
"peerDependencies": {
|
|
16
20
|
"rolldown": "1.0.0-beta.58"
|
|
17
21
|
},
|
|
18
|
-
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
],
|
|
21
22
|
"scripts": {
|
|
22
23
|
"build": "tsdown src/index.ts --dts"
|
|
23
24
|
},
|