querymongo 1.4.0 → 1.4.1
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/CHANGELOG.md +3 -3
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.4.1](https://github.com/rubsuadav/querymongo/compare/v1.4.0...v1.4.1) (2026-09-21)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* correct main entry point and add exports in package.json to use it as a lribary ([a6252f5](https://github.com/rubsuadav/querymongo/commit/a6252f54c43e63010ad75631f91c4ac54ecb8aa1))
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querymongo",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.1",
|
|
5
5
|
"description": "SQL to MongoDB Query Converter CLI",
|
|
6
|
-
"main": "dist/
|
|
6
|
+
"main": "dist/index.js",
|
|
7
7
|
"bin": "dist/cli/main.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./dist/index.js",
|
|
10
|
+
"./cli": "./dist/cli/main.js"
|
|
11
|
+
},
|
|
8
12
|
"scripts": {
|
|
9
13
|
"prepare": "npm run build",
|
|
10
14
|
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
|