@arrirpc/codegen-dart 0.57.3 → 0.57.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs +1 -3
- package/dist/index.mjs +1 -3
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
@@ -1060,9 +1060,7 @@ const dartClientGenerator = codegenUtils.defineGeneratorPlugin(
|
|
1060
1060
|
const destination = path__default.resolve(options.outputFile);
|
1061
1061
|
await fs__default.writeFile(destination, result);
|
1062
1062
|
if (options.format !== false) {
|
1063
|
-
node_child_process.execSync(`dart format ${destination}
|
1064
|
-
stdio: "inherit"
|
1065
|
-
});
|
1063
|
+
node_child_process.execSync(`dart format ${destination}`);
|
1066
1064
|
}
|
1067
1065
|
} catch (err) {
|
1068
1066
|
console.error(err);
|
package/dist/index.mjs
CHANGED
@@ -1053,9 +1053,7 @@ const dartClientGenerator = defineGeneratorPlugin(
|
|
1053
1053
|
const destination = path.resolve(options.outputFile);
|
1054
1054
|
await fs.writeFile(destination, result);
|
1055
1055
|
if (options.format !== false) {
|
1056
|
-
execSync(`dart format ${destination}
|
1057
|
-
stdio: "inherit"
|
1058
|
-
});
|
1056
|
+
execSync(`dart format ${destination}`);
|
1059
1057
|
}
|
1060
1058
|
} catch (err) {
|
1061
1059
|
console.error(err);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@arrirpc/codegen-dart",
|
3
|
-
"version": "0.57.
|
3
|
+
"version": "0.57.5",
|
4
4
|
"type": "module",
|
5
5
|
"license": "MIT",
|
6
6
|
"author": {
|
@@ -23,7 +23,7 @@
|
|
23
23
|
],
|
24
24
|
"dependencies": {
|
25
25
|
"pathe": "^1.1.2",
|
26
|
-
"@arrirpc/codegen-utils": "0.57.
|
27
|
-
"@arrirpc/schema": "0.57.
|
26
|
+
"@arrirpc/codegen-utils": "0.57.5",
|
27
|
+
"@arrirpc/schema": "0.57.5"
|
28
28
|
}
|
29
29
|
}
|