lunet-transpiler 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -3,9 +3,9 @@
3
3
 
4
4
  ## インストール
5
5
  ```bash
6
- $ npm install lunet-transpiler
6
+ $ npm install --save-dev lunet-transpiler
7
7
  # or
8
- $ bun i lunet-transpiler
8
+ $ bun add -D lunet-transpiler
9
9
  ```
10
10
 
11
11
  ## 対応状況
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lunet-transpiler",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "author": "TNTSuperMan",
5
5
  "license": "MIT",
6
6
  "description": "より柔軟なWebフロントエンドライブラリ lunetのトランスパイラー。",
@@ -33,5 +33,8 @@
33
33
  "target": "node",
34
34
  "minify": true,
35
35
  "outDir": "dist"
36
+ },
37
+ "scripts": {
38
+ "build": "bunup"
36
39
  }
37
40
  }