vitend 0.0.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 (2) hide show
  1. package/justfile +12 -0
  2. package/package.json +4 -0
package/justfile ADDED
@@ -0,0 +1,12 @@
1
+ set shell := ["bash", "-cu"]
2
+ set windows-shell := ["powershell"]
3
+
4
+ node_bin := "./node_modules/.bin/"
5
+
6
+ # Publish package as dry-run
7
+ publish-try:
8
+ pnpm publish --dry-run
9
+
10
+ # Publish package
11
+ publish:
12
+ pnpm publish
package/package.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "name": "vitend",
3
+ "version": "0.0.0"
4
+ }