@things-factory/import-base 8.0.0-beta.1 → 8.0.0-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/import-base",
3
- "version": "8.0.0-beta.1",
3
+ "version": "8.0.0-beta.2",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,7 +24,7 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create ./server/migrations/migration"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/shell": "^8.0.0-beta.1"
27
+ "@things-factory/shell": "^8.0.0-beta.2"
28
28
  },
29
- "gitHead": "36c494e587640c1490318ef7b95adab02606e0c2"
29
+ "gitHead": "f03431a09435511b2595515658f9cb8f78ba4ebb"
30
30
  }
File without changes
@@ -1,5 +0,0 @@
1
- // import { Xxx } from './xxx'
2
-
3
- export const entities = []
4
-
5
- export {}
@@ -1,7 +0,0 @@
1
- import * as typeDefs from './types'
2
- import * as resolvers from './resolvers'
3
-
4
- export const schema = {
5
- typeDefs,
6
- resolvers
7
- }
@@ -1,3 +0,0 @@
1
- export const queries = []
2
-
3
- export const mutations = []
@@ -1,5 +0,0 @@
1
- export const queries = []
2
-
3
- export const mutations = []
4
-
5
- export const types = []
package/server/index.ts DELETED
@@ -1,3 +0,0 @@
1
- export * from './entities'
2
- export * from './migrations'
3
- export * from './graphql'
@@ -1,9 +0,0 @@
1
- const glob = require('glob')
2
- const path = require('path')
3
-
4
- export var migrations = []
5
-
6
- glob.sync(path.resolve(__dirname, '.', '**', '*.js')).forEach(function(file) {
7
- if (file.indexOf('index.js') !== -1) return
8
- migrations = migrations.concat(Object.values(require(path.resolve(file))) || [])
9
- })