vite-plugin-sinwan 0.1.1 → 0.2.2

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.
@@ -35,7 +35,6 @@ jobs:
35
35
  - name: Verify dist
36
36
  run: |
37
37
  test -f dist/index.js
38
- test -f dist/index.mjs
39
38
  test -f dist/index.d.ts
40
39
  echo "dist verified"
41
40
 
package/bun.lock CHANGED
@@ -6,10 +6,11 @@
6
6
  "name": "vite-plugin-sinwan",
7
7
  "dependencies": {
8
8
  "@babel/parser": "^7.24.0",
9
- "sinwan-compiler": "^0.1.0",
9
+ "sinwan-compiler": "^0.2.2",
10
10
  },
11
11
  "devDependencies": {
12
12
  "@types/bun": "latest",
13
+ "typescript": "^5",
13
14
  },
14
15
  "peerDependencies": {
15
16
  "typescript": "^5",
@@ -206,7 +207,7 @@
206
207
 
207
208
  "semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="],
208
209
 
209
- "sinwan-compiler": ["sinwan-compiler@0.1.0", "", { "dependencies": { "@babel/core": "^7.24.0", "@babel/generator": "^7.24.0", "@babel/parser": "^7.24.0", "@babel/traverse": "^7.24.0", "@babel/types": "^7.24.0" }, "peerDependencies": { "typescript": "^5" }, "bin": { "sinwan": "dist/cli.js" } }, "sha512-iP6gSZkCc9vsRujpHfbLTn88i/Se7eUobrytG1ss6NPsdKpCagqAYPCqt/w0PunlJJhs01caRflQqtqvDWInSw=="],
210
+ "sinwan-compiler": ["sinwan-compiler@0.2.2", "", { "dependencies": { "@babel/core": "^7.24.0", "@babel/generator": "^7.24.0", "@babel/parser": "^7.24.0", "@babel/traverse": "^7.24.0", "@babel/types": "^7.24.0" }, "peerDependencies": { "typescript": "^5" }, "bin": { "sinwan": "dist/cli.js" } }, "sha512-mxwLmTGRBx2VHJN6+5lW5gjcbQIYLlqPcl7rjchqMOMsDE2zWgpr8/2OSGbt1Vh6QHtO/ca88X1Sw1tp7VYeEQ=="],
210
211
 
211
212
  "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="],
212
213
 
package/package.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "name": "vite-plugin-sinwan",
3
- "version": "0.1.1",
3
+ "version": "0.2.2",
4
4
  "description": "Vite plugin for sinwan",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
- "module": "./dist/index.mjs",
8
7
  "types": "./dist/index.d.ts",
9
8
  "keywords": [
10
9
  "sinwan",
@@ -33,11 +32,12 @@
33
32
  "build": "bun run build.ts"
34
33
  },
35
34
  "devDependencies": {
36
- "@types/bun": "latest"
35
+ "@types/bun": "latest",
36
+ "typescript": "^5"
37
37
  },
38
38
  "dependencies": {
39
39
  "@babel/parser": "^7.24.0",
40
- "sinwan-compiler": "^0.1.0"
40
+ "sinwan-compiler": "^0.2.2"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "typescript": "^5",