Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 1845cc7

Browse files
author
Josh Goldberg
committed
Removed typedoc docs generation
1 parent 25397cd commit 1845cc7

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
dist/
2-
docs/generated/
32
test/
43
node_modules/
54
*.d.ts

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@
7676
"test:setup:dir": "mkdirp test",
7777
"test:setup:html": "shenanigans-manager generate-test-html",
7878
"test:setup:tsc": "tsc -p test",
79-
"verify": "npm run src && npm run test && npm run dist && npm run docs",
80-
"verify:coverage": "npm run src && npm run test:setup && npm run test:coverage && npm run dist && npm run docs",
79+
"verify": "npm run src && npm run test && npm run dist",
80+
"verify:coverage": "npm run src && npm run test:setup && npm run test:coverage && npm run dist",
8181
"watch": "concurrently \"tsc -p . -w\" --raw \"chokidar src/**/*.test.t* --command \"\"npm run test:setup:html\"\" --silent\" --raw"
8282
},
8383
"shenanigans": {
8484
"name": "ModAttachr"
8585
},
8686
"types": "./src/index.d.ts",
8787
"version": "0.7.6"
88-
}
88+
}

settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"editor.tabSize": 4,
3+
"editor.trimAutoWhitespace": true,
4+
"files.exclude": {
5+
"**/*.d.ts": true,
6+
"**/*.js.map": true,
7+
"**/*.js": { "when": "$(basename).ts" },
8+
"**/*?.js": { "when": "$(basename).tsx" }
9+
},
10+
"tslint.alwaysShowRuleFailuresAsWarnings": true,
11+
"tslint.autoFixOnSave": true,
12+
"typescript.tsdk": "node_modules/typescript/lib"
13+
}

0 commit comments

Comments
 (0)