ag-common 0.0.598 → 0.0.600
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.
|
@@ -8,8 +8,8 @@ const pathV = require('path');
|
|
|
8
8
|
const cwd = process.cwd();
|
|
9
9
|
const resolvePath = (p) => pathV.resolve(cwd, p);
|
|
10
10
|
function run() {
|
|
11
|
-
if (!fs.existsSync('./dist')) {
|
|
12
|
-
console.log('no dist directory, cant run openapi postfix');
|
|
11
|
+
if (!fs.existsSync('./dist') || !fs.existsSync('./dist/api')) {
|
|
12
|
+
console.log('no dist/api directory, cant run openapi postfix');
|
|
13
13
|
return;
|
|
14
14
|
}
|
|
15
15
|
console.log('running openapi postfixes');
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.600",
|
|
3
3
|
"name": "ag-common",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@storybook/theming": "7.6.10",
|
|
55
55
|
"@types/jest": "29.5.11",
|
|
56
56
|
"@types/jsonwebtoken": "9.0.5",
|
|
57
|
-
"@types/node": "20.11.
|
|
57
|
+
"@types/node": "20.11.10",
|
|
58
58
|
"@types/react": "18.2.48",
|
|
59
59
|
"@types/react-dom": "18.2.18",
|
|
60
60
|
"cross-env": "7.0.3",
|