We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ba5c86 commit d235968Copy full SHA for d235968
tools/.tool-versions
@@ -1 +1,2 @@
1
golang 1.23.0
2
+nodejs 22.11.0
tools/postman/Makefile
@@ -19,7 +19,7 @@ transform_collection:
19
20
.PHONY: transform_collection_js
21
transform_collection_js:
22
- node ./scripts/transform-postman.cjs
+ node ./scripts/transform-postman.js
23
24
.PHONY: transform_collection_test
25
transform_collection_test:
tools/postman/scripts/transform-postman.cjs renamed to tools/postman/scripts/transform-postman.js
@@ -1,6 +1,6 @@
-const fs = require('fs');
-const path = require('path');
3
-const _ = require('lodash');
+import fs from 'fs'
+import path from 'path';
+import _ from 'lodash';
4
5
/**
6
# Prepare collection for Postman API
0 commit comments