syncsnap 1.0.0 → 1.0.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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -4,4 +4,4 @@ Syncsnap server SDK for Node and Next.js — API client and route handlers for f
4
4
 
5
5
  ## Docs
6
6
 
7
- **[Documentation →](https://docs.syncsnap.com)**
7
+ **[Documentation →](https://docs.syncsnap.xyz)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syncsnap",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Syncsnap server SDK for Node/Next.js",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -49,7 +49,8 @@
49
49
  "format": "prettier --write .",
50
50
  "format:check": "prettier --check .",
51
51
  "build": "tsup src/index.ts src/next.ts --dts --format esm --out-dir dist --clean --sourcemap",
52
- "publish": "npm publish --provenance --access public",
52
+ "publish": "npm publish --access public",
53
+ "publish:ci": "npm publish --provenance --access public",
53
54
  "link": "npm run build && npm link",
54
55
  "prepublishOnly": "npm run build",
55
56
  "test": "vitest run",