@sentio/cli 1.0.5 → 1.37.0-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +0,0 @@
1
- import { TestProcessorServer } from '@sentio/sdk/lib/testing'
2
-
3
- describe('Test Processor', () => {
4
- const service = new TestProcessorServer(() => require('./processor'))
5
-
6
- beforeAll(async () => {
7
- await service.start()
8
- })
9
-
10
- test('has valid config', async () => {
11
- // const config = await service.getConfig({})
12
- // expect(config.contractConfigs.length > 0).toBeTruthy()
13
- })
14
- })
@@ -1,107 +0,0 @@
1
- .idea
2
- src/types
3
-
4
- # Logs
5
- logs
6
- *.log
7
- npm-debug.log*
8
- yarn-debug.log*
9
- yarn-error.log*
10
- lerna-debug.log*
11
-
12
- # Diagnostic reports (https://nodejs.org/api/report.html)
13
- report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
14
-
15
- # Runtime data
16
- pids
17
- *.pid
18
- *.seed
19
- *.pid.lock
20
-
21
- # Directory for instrumented libs generated by jscoverage/JSCover
22
- lib-cov
23
-
24
- # Coverage directory used by tools like istanbul
25
- coverage
26
- *.lcov
27
-
28
- # nyc test coverage
29
- .nyc_output
30
-
31
- # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
32
- .grunt
33
-
34
- # Bower dependency directory (https://bower.io/)
35
- bower_components
36
-
37
- # node-waf configuration
38
- .lock-wscript
39
-
40
- # Compiled binary addons (https://nodejs.org/api/addons.html)
41
- build/Release
42
-
43
- # Dependency directories
44
- node_modules/
45
- jspm_packages/
46
-
47
- # TypeScript v1 declaration files
48
- typings/
49
-
50
- # TypeScript cache
51
- *.tsbuildinfo
52
-
53
- # Optional npm cache directory
54
- .npm
55
-
56
- # Optional eslint cache
57
- .eslintcache
58
-
59
- # Microbundle cache
60
- .rpt2_cache/
61
- .rts2_cache_cjs/
62
- .rts2_cache_es/
63
- .rts2_cache_umd/
64
-
65
- # Optional REPL history
66
- .node_repl_history
67
-
68
- # Output of 'npm pack'
69
- *.tgz
70
-
71
- # Yarn Integrity file
72
- .yarn-integrity
73
-
74
- # dotenv environment variables file
75
- .env
76
- .env.test
77
-
78
- # parcel-bundler cache (https://parceljs.org/)
79
- .cache
80
-
81
- # Next.js build output
82
- .next
83
-
84
- # Nuxt.js build / generate output
85
- .nuxt
86
- dist
87
-
88
- # Gatsby files
89
- .cache/
90
- # Comment in the public line in if your project uses Gatsby and *not* Next.js
91
- # https://nextjs.org/blog/next-9-1#public-directory-support
92
- # public
93
-
94
- # vuepress build output
95
- .vuepress/dist
96
-
97
- # Serverless directories
98
- .serverless/
99
-
100
- # FuseBox cache
101
- .fusebox/
102
-
103
- # DynamoDB Local files
104
- .dynamodb/
105
-
106
- # TernJS port file
107
- .tern-port
@@ -1,14 +0,0 @@
1
- import { TestProcessorServer } from '@sentio/sdk/lib/testing'
2
-
3
- describe('Test Processor', () => {
4
- const service = new TestProcessorServer(() => require('./processor'))
5
-
6
- beforeAll(async () => {
7
- await service.start()
8
- })
9
-
10
- test('has valid config', async () => {
11
- // const config = await service.getConfig({})
12
- // expect(config.contractConfigs.length > 0).toBeTruthy()
13
- })
14
- })
package/tsconfig.json DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "extends": "../tsconfig.json",
3
- "compilerOptions": {
4
- "inlineSources": true,
5
- "rootDir": "./src",
6
- "baseUrl": "./src",
7
- "paths": {
8
- "@sentio/sdk": ["."]
9
- },
10
- "outDir": "lib"
11
- },
12
- "exclude": ["lib", "templates"]
13
- }