@scalar/openapi-types 0.1.1 → 0.1.3

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/CHANGELOG.md +12 -0
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @scalar/openapi-types
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 8759e7f: chore: use build tooling scripts
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - e911047: Add default exports
14
+
3
15
  ## 0.1.1
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "swagger",
17
17
  "typescript"
18
18
  ],
19
- "version": "0.1.1",
19
+ "version": "0.1.3",
20
20
  "engines": {
21
21
  "node": ">=18"
22
22
  },
@@ -24,7 +24,8 @@
24
24
  "exports": {
25
25
  ".": {
26
26
  "import": "./dist/index.js",
27
- "types": "./dist/index.d.ts"
27
+ "types": "./dist/index.d.ts",
28
+ "default": "./dist/index.js"
28
29
  }
29
30
  },
30
31
  "files": [
@@ -34,7 +35,7 @@
34
35
  ],
35
36
  "sideEffects": false,
36
37
  "devDependencies": {
37
- "@scalar/build-tooling": "0.1.10"
38
+ "@scalar/build-tooling": "0.1.11"
38
39
  },
39
40
  "scripts": {
40
41
  "build": "pnpm types:check && rollup -c --configPlugin typescript && pnpm types:build",
@@ -43,7 +44,7 @@
43
44
  "lint:fix": "eslint . --fix",
44
45
  "test:prepare": "vite-node scripts/load-files.ts",
45
46
  "test:unit": "vite-node scripts/load-files.ts && vitest",
46
- "types:build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
47
- "types:check": "tsc --noEmit --skipLibCheck"
47
+ "types:build": "scalar-types-build",
48
+ "types:check": "scalar-types-check"
48
49
  }
49
50
  }