restafary 12.0.0 → 12.1.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.
Files changed (2) hide show
  1. package/ChangeLog +10 -0
  2. package/package.json +5 -1
package/ChangeLog CHANGED
@@ -1,3 +1,13 @@
1
+ 2024.02.02, v12.1.1
2
+
3
+ fix:
4
+ - 77ceec5 restafary: exports
5
+
6
+ 2024.02.02, v12.1.0
7
+
8
+ feature:
9
+ - fc813f6 restafary: export client
10
+
1
11
  2024.02.02, v12.0.0
2
12
 
3
13
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "restafary",
3
- "version": "12.0.0",
3
+ "version": "12.1.1",
4
4
  "type": "commonjs",
5
5
  "description": "REST for CRUD file operations",
6
6
  "main": "server/restafary.js",
@@ -12,6 +12,10 @@
12
12
  "@babel/preset-env"
13
13
  ]
14
14
  },
15
+ "exports": {
16
+ ".": "./server/restafary.js",
17
+ "./client": "./client/index.js"
18
+ },
15
19
  "scripts": {
16
20
  "test": "madrun test",
17
21
  "report": "madrun report",