instaserve 0.0.9 → 0.0.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.
Files changed (2) hide show
  1. package/index.mjs +2 -1
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -6,7 +6,8 @@ if (!fs.existsSync(process.cwd() + '/routes.mjs')) {
6
6
  _debug: ({ r, s, db }) => console.log(r.url, r.method),
7
7
  '/': ({ s }) => s.endJSON({ message: 'hello index' }),
8
8
  'tables': name => ([k, v]) => k.match(name + ':')
9
- })`)
9
+ }
10
+ `)
10
11
  }
11
12
  const routes = (await import(`${process.cwd()}/routes.mjs`)).default
12
13
  const VastDB = (await import(`./vastdb.mjs`)).default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instaserve",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "",
5
5
  "main": "index.mjs",
6
6
  "bin": "./index.mjs"