@webmate-studio/builder 0.2.56 → 0.2.57

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmate-studio/builder",
3
- "version": "0.2.56",
3
+ "version": "0.2.57",
4
4
  "type": "module",
5
5
  "description": "Webmate Studio Component Builder",
6
6
  "keywords": [
@@ -12,7 +12,7 @@
12
12
  "license": "MIT",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/webmate-studio/builder.git"
15
+ "url": "git+https://github.com/webmate-studio/builder.git"
16
16
  },
17
17
  "files": [
18
18
  "src",
@@ -26,7 +26,7 @@
26
26
  "./dist/motion-runtime.min.js": "./dist/motion-runtime.min.js"
27
27
  },
28
28
  "bin": {
29
- "wm-build-service": "./build-service.js"
29
+ "wm-build-service": "build-service.js"
30
30
  },
31
31
  "scripts": {
32
32
  "service": "node build-service.js",
@@ -330,6 +330,9 @@ function splitCSSRules(css) {
330
330
  current = '';
331
331
  continue;
332
332
  }
333
+ // IMPORTANT: Don't add the } again (already added above)
334
+ // Continue to next iteration to avoid duplicate }
335
+ continue;
333
336
  }
334
337
  }
335
338
  }