@aiquants/markdown 1.10.1 → 1.11.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.
package/dist/markdown-api CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiquants/markdown",
3
- "version": "1.10.1",
3
+ "version": "1.11.0",
4
4
  "description": "Markdown renderer for React with advanced features",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -121,7 +121,7 @@
121
121
  "access": "public"
122
122
  },
123
123
  "scripts": {
124
- "build": "rimraf dist && go build -C ../go/markdown-api -o ../../markdown/dist/markdown-api main.go && (chmod +x dist/markdown-api || true) && vite build && vite build --config vite.config.cli.ts && pnpm build:css",
124
+ "build": "rimraf dist && GOOS=linux GOARCH=amd64 go build -C ../go/markdown-api -o ../../markdown/dist/markdown-api main.go && (chmod +x dist/markdown-api || true) && vite build && vite build --config vite.config.cli.ts && pnpm build:css",
125
125
  "build:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/markdown.css --minify",
126
126
  "postinstall": "chmod +x dist/markdown-api || true",
127
127
  "dev": "vite build --watch",