@arrirpc/codegen-dart 0.45.5 → 0.45.6
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.
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
'use strict';
|
2
2
|
|
3
|
-
const child_process = require('child_process');
|
4
|
-
const fs = require('fs');
|
5
3
|
const codegenUtils = require('@arrirpc/codegen-utils');
|
6
4
|
const schema = require('@arrirpc/schema');
|
5
|
+
const child_process = require('child_process');
|
6
|
+
const fs = require('fs');
|
7
7
|
|
8
8
|
var __defProp = Object.defineProperty;
|
9
9
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
package/dist/index.mjs
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import { execSync } from 'child_process';
|
2
|
-
import { writeFileSync } from 'fs';
|
3
1
|
import { defineClientGeneratorPlugin, unflattenProcedures, isRpcDefinition, isServiceDefinition, pascalCase, isSchemaFormProperties, isSchemaFormDiscriminator, isSchemaFormValues, isSchemaFormType, isSchemaFormElements, isSchemaFormEnum, isSchemaFormRef, camelCase } from '@arrirpc/codegen-utils';
|
4
2
|
import { a } from '@arrirpc/schema';
|
3
|
+
import { execSync } from 'child_process';
|
4
|
+
import { writeFileSync } from 'fs';
|
5
5
|
|
6
6
|
var __defProp = Object.defineProperty;
|
7
7
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@arrirpc/codegen-dart",
|
3
|
-
"version": "0.45.
|
3
|
+
"version": "0.45.6",
|
4
4
|
"type": "module",
|
5
5
|
"license": "MIT",
|
6
6
|
"author": {
|
@@ -22,7 +22,7 @@
|
|
22
22
|
"dist"
|
23
23
|
],
|
24
24
|
"dependencies": {
|
25
|
-
"@arrirpc/codegen-utils": "0.45.
|
26
|
-
"@arrirpc/schema": "0.45.
|
25
|
+
"@arrirpc/codegen-utils": "0.45.6",
|
26
|
+
"@arrirpc/schema": "0.45.6"
|
27
27
|
}
|
28
28
|
}
|