@pictogrammers/element-esbuild 0.0.13 → 0.0.14

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 CHANGED
@@ -48,3 +48,5 @@ export default {
48
48
  ```
49
49
 
50
50
  Leaving off the `namespace` will treat the repo as a component library. Each component will be built individually instead of a single application. The component's `__examples__` folders will render as demo.
51
+
52
+ Changes to the `/components/*` will sync to the `/publish/*` directory. This is by design so the publish directory can be linked with the `npm link` command.
@@ -2246,6 +2246,8 @@ ${indent}`);
2246
2246
  // Use ES Modules
2247
2247
  target: "es2024",
2248
2248
  // Target ES6 syntax
2249
+ sourcemap: true,
2250
+ // needed for debug
2249
2251
  minify: false,
2250
2252
  loader: {
2251
2253
  ".css": "text"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pictogrammers/element-esbuild",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "type": "module",
5
5
  "description": "Element esbuild",
6
6
  "homepage": "https://github.com/Pictogrammers/Element-esbuild#readme",
@@ -121,6 +121,7 @@ let ctx = await context({
121
121
  bundle: true,
122
122
  format: 'esm', // Use ES Modules
123
123
  target: 'es2024', // Target ES6 syntax
124
+ sourcemap: true, // needed for debug
124
125
  minify: false,
125
126
  loader: {
126
127
  '.css': 'text'