openapi-format
Advanced tools
Comparing version 1.24.0 to 1.24.1
## unreleased | ||
## [1.24.1] - 2024-10-04 | ||
- fix: replace 'node:path' with 'path' to resolve Webpack build error | ||
## [1.24.0] - 2024-09-27 | ||
@@ -4,0 +8,0 @@ |
@@ -34,3 +34,3 @@ #!/usr/bin/env node | ||
const {writePaths, writeComponents, writeSplitOpenAPISpec} = require('./utils/split'); | ||
const {dirname, extname} = require('node:path'); | ||
const {dirname, extname} = require('path'); | ||
@@ -37,0 +37,0 @@ /** |
{ | ||
"name": "openapi-format", | ||
"version": "1.24.0", | ||
"version": "1.24.1", | ||
"description": "Format an OpenAPI document by ordering, formatting and filtering fields.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -6,3 +6,3 @@ const fs = require('fs'); | ||
const https = require('https'); | ||
const {dirname} = require('node:path'); | ||
const {dirname} = require('path'); | ||
@@ -9,0 +9,0 @@ /** |
187496