Skip to content

Commit ceef06b

Browse files
committed
parser almost done (not tested)
1 parent 24226a2 commit ceef06b

File tree

13 files changed

+469
-1144
lines changed

13 files changed

+469
-1144
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.rpt2_cache/**
22
node_modules/**
3+
dist/**
34

45
*.js.map

.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.rpt2_cache/**
22
node_modules/**
3-
.vscode/**
3+
.vscode/**
4+
5+
*.js.map

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "test parser.js",
11+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
12+
"args": [
13+
"-u",
14+
"tdd",
15+
"--timeout",
16+
"999999",
17+
"--colors",
18+
"${workspaceFolder}/tests/parse.js"
19+
],
20+
"internalConsoleOptions": "openOnSessionStart"
21+
},
722
{
823
"type": "node",
924
"request": "launch",

0 commit comments

Comments
 (0)