Skip to content

Commit ed4c1f8

Browse files
EddyVerbruggeneddyverbruggen
authored andcommitted
Added .js files so we can install from GitHub
1 parent 90c04b4 commit ed4c1f8

File tree

5 files changed

+326
-10
lines changed

5 files changed

+326
-10
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
*.js
21
*.js.map
32
*.log
4-
!scripts/*.js
3+
demo/hooks/**/*.js
54
demo/app/*.js
6-
!demo/karma.conf.js
7-
!demo/app/tests/*.js
85
demo/*.d.ts
96
demo/lib
107
demo/platforms

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# NativeScript-HTTPS
2+
3+
> Forked by Eddy Verbruggen to be able to install from GitHub (include .js files), just in casenpm isbehind and we desperately need the latest changes.
4+
25
### The definitive way to hit HTTP based APIs in Nativescript.
36
Easily integrate the most reliable native networking libraries with the latest and greatest HTTPS security features.
47
#### A drop-in replacement for the [default http module](https://docs.nativescript.org/cookbook/http#get-response-status-code).

demo/tsconfig.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
"declaration": false,
66
"removeComments": true,
77
"noLib": false,
8-
"skipLibCheck": true,
9-
"skipDefaultLibCheck": true,
8+
"skipLibCheck": true,
9+
"skipDefaultLibCheck": true,
1010
"emitDecoratorMetadata": true,
1111
"experimentalDecorators": true,
12-
"lib": ["es2016"],
13-
"sourceMap": true,
12+
"lib": [
13+
"es2016"
14+
],
1415
"pretty": true,
1516
"allowUnreachableCode": false,
1617
"allowUnusedLabels": false,
@@ -20,8 +21,11 @@
2021
"noImplicitReturns": true,
2122
"noImplicitUseStrict": false,
2223
"noFallthroughCasesInSwitch": true,
23-
"typeRoots": ["./node_modules/@types", "./node_modules"],
24-
"types": []
24+
"typeRoots": [
25+
"./node_modules/@types",
26+
"./node_modules"
27+
],
28+
"types": []
2529
},
2630
"exclude": [
2731
"node_modules",

https.android.js

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

https.ios.js

Lines changed: 140 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)