Skip to content

Commit

Permalink
don't reimport config
Browse files Browse the repository at this point in the history
  • Loading branch information
eluce2 committed Apr 4, 2024
1 parent 4f53810 commit bd001c0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @proofgeist/fmdapi

## 3.3.8

### Patch Changes

- don't reimport config statement

## 3.3.6

### Patch Changes
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@proofgeist/fmdapi",
"version": "3.3.7",
"version": "3.3.8",
"description": "FileMaker Data API client",
"main": "dist/index.js",
"repository": "[email protected]:proofgeist/fm-dapi.git",
Expand All @@ -21,7 +21,8 @@
"import": "./dist/wv.js",
"types": "./dist/wv.d.ts"
},
"./dist/tokenStore/*.js": "./dist/tokenStore/*.js"
"./dist/tokenStore/*.js": "./dist/tokenStore/*.js",
"./dist/tokenStore/*": "./dist/tokenStore/*"
},
"scripts": {
"prepublishOnly": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/codegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ const buildClient = (args: BuildSchemaArgs) => {
createSourceFile(`source.ts`, "", ts.ScriptTarget.Latest),
[
importTypeStatement(schemaName, portalSchema.length > 0, type === "zod"),
...reimportConfigStatements(args.configLocation),
// ...reimportConfigStatements(args.configLocation),
...exportClientStatement({
envNames,
useZod: type === "zod",
Expand Down

0 comments on commit bd001c0

Please sign in to comment.