fubi 1.0.3-beta.9 → 1.1.0-beta.1
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/app.es.js +2 -0
- package/dist/index.es.js +1 -2
- package/dist/index.iife.js +1 -1
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fubi",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0-beta.1",
|
|
4
4
|
"author": "Wonder Makers",
|
|
5
5
|
"main": "./dist/index.es.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
".": {
|
|
30
30
|
"types": "./dist/index.d.ts",
|
|
31
31
|
"import": "./dist/index.es.js"
|
|
32
|
+
},
|
|
33
|
+
"./app": {
|
|
34
|
+
"import": "./dist/app.es.js"
|
|
32
35
|
}
|
|
33
36
|
},
|
|
34
37
|
"description": "A lightweight, universal in-page feedback and collaboration tool for web applications.",
|
|
@@ -51,9 +54,9 @@
|
|
|
51
54
|
"scripts": {
|
|
52
55
|
"dev": "concurrently \"vite dev\" \"wait-on dist/index.es.js && vite --host\"",
|
|
53
56
|
"dev:prod": "concurrently \"vite dev --mode production\" \"wait-on dist/index.es.js && vite --host --mode production\"",
|
|
54
|
-
"prod": "concurrently \"vite build --watch\" \"wait-on dist/index.es.js && cd demo && vite --host\"",
|
|
55
|
-
"build": "tsc && vite build",
|
|
56
|
-
"build:staging": "tsc && vite build --mode staging",
|
|
57
|
+
"prod": "concurrently \"FUBI_LOCAL_APP=1 vite build --watch\" \"wait-on dist/index.es.js && cd demo && vite --host\"",
|
|
58
|
+
"build": "tsc && vite build && BUILD_TARGET=app vite build",
|
|
59
|
+
"build:staging": "tsc && vite build --mode staging && BUILD_TARGET=app vite build --mode staging",
|
|
57
60
|
"typecheck": "tsc --noEmit",
|
|
58
61
|
"test": "playwright test",
|
|
59
62
|
"pub": "bun run publish.js"
|