Skip to content

Commit 3ee698a

Browse files
committed
chore: add license
1 parent f4250e3 commit 3ee698a

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# The MIT License
2+
3+
Copyright 2022 Julien Ripouteau, contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

packages/hot_hook/package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hot-hook",
3-
"description": "",
3+
"description": "Easy hot module reloading (HMR) for Node.js and ESM",
44
"version": "0.0.1",
55
"main": "index.js",
66
"type": "module",
@@ -38,8 +38,14 @@
3838
"picomatch": "^4.0.2"
3939
},
4040
"author": "Julien Ripouteau <[email protected]>",
41-
"license": "ISC",
42-
"keywords": [],
41+
"license": "MIT",
42+
"keywords": [
43+
"hmr",
44+
"hot",
45+
"reload",
46+
"esm",
47+
"node"
48+
],
4349
"eslintConfig": {
4450
"extends": "@adonisjs/eslint-config/package"
4551
},

packages/runner/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"version": "0.0.0",
55
"main": "index.js",
66
"type": "module",
7+
"files": [
8+
"build"
9+
],
710
"bin": {
811
"hot-runner": "build/bin/run.js"
912
},
@@ -16,6 +19,6 @@
1619
"execa": "^8.0.1"
1720
},
1821
"author": "Julien Ripouteau <[email protected]>",
19-
"license": "ISC",
22+
"license": "MIT",
2023
"keywords": []
2124
}

0 commit comments

Comments
 (0)