-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3f091f
commit 1c174c4
Showing
7 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
node_modules/* | ||
certificates/* | ||
*/*.cjs | ||
*.cjs | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
## 0.0.3 | ||
## v0.0.4 | ||
* Add CommonJS support | ||
* Add HttpListner helper | ||
* Add SocketIO errata | ||
|
||
## v0.0.3 | ||
* Rename RequestHandler to HttpHandler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * as socketio from './socketio.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export * as lib from './lib/index.js'; | ||
export * as helpers from './helpers/index.js'; | ||
export * as middleware from './middleware/index.js'; | ||
export * as errata from './errata/index.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,16 +11,15 @@ | |
"cors", | ||
"gzip" | ||
], | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "An opt-in, stream-based approach to Web Hosting with NodeJS", | ||
"author": "[email protected]", | ||
"homepage": "https://github.com/clshortfuse/webhoster", | ||
"repository": "github:clshortfuse/webhoster", | ||
"license": "MIT", | ||
"main": "index.cjs", | ||
"exports": { | ||
"require": "./index.cjs", | ||
"import": "./index.js" | ||
"./": "./" | ||
}, | ||
"type": "module", | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
/* eslint-disable node/no-missing-import */ | ||
import resolve from '@rollup/plugin-node-resolve'; | ||
|
||
/* eslint-disable import/no-anonymous-default-export */ | ||
/** @typedef {import('rollup')} */ | ||
export default { | ||
input: 'index.js', | ||
output: { | ||
file: 'index.cjs', | ||
format: 'cjs', | ||
}, | ||
plugins: [ | ||
resolve(), | ||
], | ||
}; |