vanilla-jet 1.0.0 → 1.0.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/index.js +13 -5
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,5 +1,13 @@
1
- function helloNpm() {
2
- return "hello NPM"
3
- }
4
-
5
- module.exports = helloNpm
1
+ const Dipper = require('./framework/dipper.js');
2
+ const Request = require('./framework/request.js');
3
+ const Response = require('./framework/response.js');
4
+ const Router = require('./framework/router.js');
5
+ const Server = require('./framework/server.js');
6
+
7
+ module.exports = {
8
+ Dipper,
9
+ Request,
10
+ Response,
11
+ Router,
12
+ Server
13
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanilla-jet",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "VannilaJet framework",
5
5
  "main": "index.js",
6
6
  "scripts": {