Skip to content
This repository was archived by the owner on Nov 23, 2022. It is now read-only.

Commit c4c804a

Browse files
committed
fix(transport): add license
1 parent b3d926f commit c4c804a

File tree

3 files changed

+34
-11
lines changed

3 files changed

+34
-11
lines changed

packages/transport/LICENSE

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

packages/transport/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"streaming-iterables": "^4.1.0",
2525
"webrtcsupport": "github:ipfs/webrtcsupport"
2626
},
27+
"license": "MIT",
2728
"name": "@dstack-js/transport",
2829
"type": "commonjs",
2930
"version": "0.2.44"

packages/transport/project.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
22
"root": "packages/transport",
33
"sourceRoot": "packages/transport/src",
4+
"tags": [],
45
"targets": {
56
"build": {
67
"executor": "@nrwl/js:tsc",
7-
"outputs": ["{options.outputPath}"],
88
"options": {
9-
"outputPath": "dist/packages/transport",
9+
"assets": ["packages/transport/*.md", "packages/transport/LICENSE"],
1010
"main": "packages/transport/src/index.js",
11-
"tsConfig": "packages/transport/tsconfig.lib.json",
12-
"assets": ["packages/transport/*.md"]
13-
}
11+
"outputPath": "dist/packages/transport",
12+
"tsConfig": "packages/transport/tsconfig.lib.json"
13+
},
14+
"outputs": ["{options.outputPath}"]
1415
},
1516
"lint": {
1617
"executor": "@nrwl/linter:eslint",
17-
"outputs": ["{options.outputFile}"],
1818
"options": {
1919
"lintFilePatterns": ["packages/transport/**/*.js"]
20-
}
20+
},
21+
"outputs": ["{options.outputFile}"]
2122
},
2223
"test": {
2324
"executor": "@nrwl/jest:jest",
24-
"outputs": ["coverage/packages/transport"],
2525
"options": {
2626
"jestConfig": "packages/transport/jest.config.js",
2727
"passWithNoTests": true
28-
}
28+
},
29+
"outputs": ["coverage/packages/transport"]
2930
}
30-
},
31-
"tags": []
31+
}
3232
}

0 commit comments

Comments
 (0)