diff --git a/CHANGELOG.md b/CHANGELOG.md index c46e2e394e..c1c9478ea7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,11 @@ #### Changes * Python: Added JSON.DEL JSON.FORGET commands ([#1146](https://github.com/aws/glide-for-redis/pull/1146)) -## 0.3.1 (2024-03-28) +## 0.3.3 (2024-03-28) #### Fixes -* Node: Ignore hybrid-tests folder for npm publish. ([#1178](https://github.com/aws/glide-for-redis/pull/1178)) -* Node: Fixed broken path of tsconfig translation. ([#1183](https://github.com/aws/glide-for-redis/pull/1183)) +* Node: Fix issue with dual usage, `CommonJS` and `ECMAScript` modules. ([#1199](https://github.com/aws/glide-for-redis/pull/1199)) ## 0.3.0 (2024-03-25) @@ -80,4 +79,4 @@ Preview release of **GLIDE for Redis** a Polyglot Redis client. -See the [README](README.md) for additional information. +See the [README](README.md) for additional information. \ No newline at end of file diff --git a/node/npm/glide/tsconfig.json b/node/npm/glide/tsconfig.json index 2c69302b23..14c61aaf26 100644 --- a/node/npm/glide/tsconfig.json +++ b/node/npm/glide/tsconfig.json @@ -20,8 +20,7 @@ "resolveJsonModule": true, "traceResolution": false, "types": ["node", "jest"], - /* The bellow parts are for developer extention usage and should be overriden in cjs and mjs tscofig's files */ - "outDir": "./build-ts" /* Specify an output folder for all emitted files. Ovrride in tsconfig-cjs */ + "outDir": "./build-ts" /* Specify an output folder for all emitted files */ }, "include": ["./*.ts", "src/*.ts", "src/*.js"], "exclude": [ diff --git a/node/tsconfig.json b/node/tsconfig.json index 0e22ac3dff..4cd744701c 100644 --- a/node/tsconfig.json +++ b/node/tsconfig.json @@ -23,7 +23,7 @@ "lib": [ "esnext" ] /* Specify a set of bundled library declaration files that describe the target runtime environment. */, - "outDir": "./build-ts" /* Specify an output folder for all emitted files. Ovrride in tsconfig-cjs */ + "outDir": "./build-ts" /* Specify an output folder for all emitted files.*/ }, "compileOnSave": false, "include": ["./*.ts", "src/*.ts", "src/*.js"],