We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
type="module"
package.json
1 parent 6dbc19c commit 41c082cCopy full SHA for 41c082c
.github/workflows/publish.yml
@@ -5,7 +5,7 @@ on:
5
- 'v*'
6
7
jobs:
8
- publish:
+ Publish:
9
runs-on: ubuntu-latest
10
steps:
11
- name: Checkout Source Code
@@ -29,6 +29,11 @@ jobs:
29
- name: Build
30
run: just build
31
32
+ - name: Set type="module" for package.json
33
+ run: |
34
+ npm i -g json
35
+ json -I -f ./pkg/package.json -e "this.type=\"module\""
36
+
37
- name: Publish to NPM
38
run: |
39
cd ./pkg
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "mince"
3
-version = "0.0.4"
+version = "0.0.5"
4
authors = ["Esteban Borai <estebanborai@gmail.com>"]
edition = "2021"
0 commit comments