esbuild-plugin-solarite 0.7.0 → 0.8.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.
Files changed (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-plugin-solarite",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "esbuild plugin that compiles JSX/TSX to Solarite precompile output, giving JSX the same runtime speed as h tagged templates.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -22,12 +22,15 @@
22
22
  "precompile"
23
23
  ],
24
24
  "dependencies": {
25
- "babel-plugin-solarite": "^0.7.0"
25
+ "babel-plugin-solarite": "^0.8.0"
26
26
  },
27
27
  "peerDependencies": {
28
- "solarite": "^0.7.0"
28
+ "solarite": "^0.8.0"
29
29
  },
30
30
  "peerDependenciesMeta": {
31
31
  "solarite": { "optional": true }
32
+ },
33
+ "scripts": {
34
+ "test": "node test.js"
32
35
  }
33
36
  }