1 | src/test
|
2 | Jenkinsfile
|
3 | node_modules
|
4 | .idea
|
5 | .sfdc
|
6 | SampleRestRequests
|
7 | .project
|
8 | httpTest/Example-Dev-Workspace
|
9 | heroku
|
10 | npm-debug.log
|
11 | coverage
|
12 |
|
13 | #
|
14 | # TypeScript files
|
15 | #
|
16 | src/
|
17 | typings/
|
18 | tsconfig.json
|
19 | tslint.json
|
20 | typings.json
|
21 |
|
22 | #
|
23 | # VSCode
|
24 | #
|
25 | .vscode/*
|
26 |
|
27 | #
|
28 | # IntelliJ
|
29 | #
|
30 | .idea/
|
31 | force-cli.iml
|
32 |
|
33 | #
|
34 | # Istanbul code coverage files
|
35 | #
|
36 | coverage/
|
37 |
|
38 | #
|
39 | # Gulpfile
|
40 | #
|
41 | gulpfile.js
|
42 | gulpfile.config.js
|
43 |
|
44 | #
|
45 | # https://github.com/github/gitignore/blob/master/Node.gitignore
|
46 | #
|
47 |
|
48 | # Logs
|
49 | logs
|
50 | *.log
|
51 | npm-debug.log*
|
52 |
|
53 | # Runtime data
|
54 | pids
|
55 | *.pid
|
56 | *.seed
|
57 |
|
58 | # Directory for instrumented libs generated by jscoverage/JSCover
|
59 | lib-cov
|
60 |
|
61 | # Coverage directory used by tools like istanbul
|
62 | coverage
|
63 |
|
64 | # nyc test coverage
|
65 | .nyc_output
|
66 |
|
67 | # JUnit style report
|
68 | test_reports/
|
69 |
|
70 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
71 | .grunt
|
72 |
|
73 | # node-waf configuration
|
74 | .lock-wscript
|
75 |
|
76 | # Compiled binary addons (http://nodejs.org/api/addons.html)
|
77 | build/Release
|
78 |
|
79 | # Dependency directories
|
80 | node_modules
|
81 | jspm_packages
|
82 |
|
83 | # Optional npm cache directory
|
84 | .npm
|
85 |
|
86 | # Optional REPL history
|
87 | .node_repl_history
|
88 |
|
89 | # TypeScript Type Definitions
|
90 | *.d.ts
|
91 |
|
92 | # Tests
|
93 | dist/test/*
|
94 | xunit.xml
|
95 |
|
96 | # Tests arftifacts
|
97 | Dockerfile
|
98 | Jenkinsfile
|
99 |
|
100 | #misc
|
101 | dist/debug
|
102 |
|
103 | # Internal guide
|
104 | DEVELOP.md
|
105 |
|
106 | # This will have internal urls
|
107 | package-lock.json |
\ | No newline at end of file |