@scalar/api-reference 0.6.0 → 0.6.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.
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@scalar/api-reference",
3
3
  "description": "generate beautiful API references from OpenAPI specs",
4
- "version": "0.6.0",
4
+ "version": "0.6.1",
5
5
  "author": "Scalar (https://github.com/scalar)",
6
- "browser": "./dist/browser/standalone.umd.cjs",
6
+ "browser": "./dist/browser/standalone.js",
7
7
  "bugs": "https://github.com/scalar/scalar/issues/new",
8
8
  "dependencies": {
9
9
  "@headlessui/vue": "1.7.16",
@@ -94,9 +94,10 @@
94
94
  "type": "module",
95
95
  "types": "dist/index.d.ts",
96
96
  "scripts": {
97
- "build": "vite build && vite build -c vite.cdn.config.ts && pnpm types:build && tsc-alias -p tsconfig.build.json",
98
- "build-storybook": "storybook build",
97
+ "build": "pnpm build:default && pnpm build:cdn && pnpm types:build && tsc-alias -p tsconfig.build.json",
98
+ "build:default": "vite build",
99
99
  "build:cdn": "vite build -c vite.cdn.config.ts",
100
+ "build:storybook": "storybook build",
100
101
  "dev": "vite",
101
102
  "lint:check": "eslint .",
102
103
  "lint:fix": "eslint . --fix",