esbuild-helpers 1.0.0-next.1 → 1.0.0
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 +1 -2
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -26,7 +26,6 @@ Atm see config files at root for how to use.
|
|
|
26
26
|
* `npm run nodejs:events`
|
|
27
27
|
* Shows how to trigger events between the builds
|
|
28
28
|
* Code: `config_nodejs_event.ts`
|
|
29
|
-
|
|
30
29
|
* `npm run devserver`
|
|
31
30
|
* Shows how run simple dev server (reloads js withour browser reload)
|
|
32
31
|
* Code: `config_devserver.ts`
|
|
@@ -44,7 +43,7 @@ You need to have this installed:
|
|
|
44
43
|
- esbuild
|
|
45
44
|
- typescript
|
|
46
45
|
- postcss (will just warn if missing)
|
|
47
|
-
- minify-html-literals (will just warn if missing)
|
|
48
46
|
- compression (will skip if missing)
|
|
47
|
+
- electron & electron-squirrel-startup (only if you plan to use it)
|
|
49
48
|
|
|
50
49
|
Have these ass dev dependencies so user can use newer version/not dependant of this
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "esbuild-helpers",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Simple helper lib to help make js bundles for web, nodejs server and electron",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"rimraf": "./node_modules/rimraf/bin.js",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"@types/rimraf": "^3.0.2",
|
|
35
35
|
"@types/ws": "^8.5.4",
|
|
36
36
|
"cssnano": "^5.1.14",
|
|
37
|
-
"custom-elements-hmr-polyfill": "^1.0.3",
|
|
38
37
|
"electron": "^22.0.2",
|
|
39
38
|
"electron-squirrel-startup": "^1.0.0",
|
|
40
39
|
"esbuild": "^0.17.0",
|