@cocreate/crud-server 1.2.9 → 1.2.10
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 +7 -0
- package/package.json +2 -2
- package/{index.js → src/index.js} +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.2.10](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.2.9...v1.2.10) (2022-02-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* moved index.js to src/ ([fdeb6c4](https://github.com/CoCreate-app/CoCreate-crud-server/commit/fdeb6c4a4ba4cc201e935268ad9d1feccdd4fbac))
|
|
7
|
+
|
|
1
8
|
## [1.2.9](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.2.8...v1.2.9) (2022-02-28)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/crud-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"description": "CoCreate-crud-server",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cocreate-crud",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
29
29
|
"docs": "node ./node_modules/@cocreate/docs/src/index.js"
|
|
30
30
|
},
|
|
31
|
-
"main": "index
|
|
31
|
+
"main": "./src/index",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git+https://github.com/CoCreate-app/CoCreate-crud-server.git"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const crud = require('./
|
|
4
|
-
const list = require('./
|
|
5
|
-
const user = require('./
|
|
6
|
-
const unique = require('./
|
|
7
|
-
const organization = require('./
|
|
8
|
-
const industry = require('./
|
|
9
|
-
const backup = require('./
|
|
3
|
+
const crud = require('./crud');
|
|
4
|
+
const list = require('./list');
|
|
5
|
+
const user = require('./user');
|
|
6
|
+
const unique = require('./unique');
|
|
7
|
+
const organization = require('./organization');
|
|
8
|
+
const industry = require('./industry');
|
|
9
|
+
const backup = require('./backup');
|
|
10
10
|
|
|
11
11
|
module.exports.init = function(socket_server, db_client) {
|
|
12
12
|
new crud(socket_server, db_client);
|