@builder.io/sdk-qwik 0.0.39-0 → 0.1.1

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 +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-qwik",
3
- "version": "0.0.39-0",
3
+ "version": "0.1.1",
4
4
  "description": "Builder.io Qwik SDK",
5
5
  "type": "module",
6
6
  "main": "./lib/index.qwik.cjs",
@@ -23,8 +23,9 @@
23
23
  "scripts": {
24
24
  "typecheck": "tsc --noEmit",
25
25
  "build": "tsc && vite build --mode lib",
26
- "release:patch": "yarn run build && yarn version patch && npm publish --access public",
27
- "release:dev": "yarn run build && npm version prerelease && npm publish --tag latest --access public"
26
+ "release:patch": "yarn run build && npm version patch && npm publish",
27
+ "release:minor": "yarn run build && npm version minor && npm publish",
28
+ "release:dev": "yarn run build && npm version prerelease && npm publish --tag dev"
28
29
  },
29
30
  "devDependencies": {
30
31
  "@types/node": "latest",