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

Commit 827d332

Browse files
author
Josh Goldberg
committed
Removed typedoc docs generation
1 parent 9c013ab commit 827d332

4 files changed

Lines changed: 21 additions & 8 deletions

File tree

.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: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"bugs": {
88
"url": "https://github.com/FullScreenShenanigans/QuadsKeepr/issues"
99
},
10-
"dependencies": {},
10+
"dependencies": {
11+
},
1112
"description": "Adjustable quadrant-based collision detection.",
1213
"devDependencies": {
1314
"@types/chai": "^4.1.7",
@@ -74,13 +75,13 @@
7475
"test:setup:dir": "mkdirp test",
7576
"test:setup:html": "shenanigans-manager generate-test-html",
7677
"test:setup:tsc": "tsc -p test",
77-
"verify": "npm run src && npm run test && npm run dist && npm run docs",
78-
"verify:coverage": "npm run src && npm run test:setup && npm run test:coverage && npm run dist && npm run docs",
78+
"verify": "npm run src && npm run test && npm run dist",
79+
"verify:coverage": "npm run src && npm run test:setup && npm run test:coverage && npm run dist",
7980
"watch": "concurrently \"tsc -p . -w\" --raw \"chokidar src/**/*.test.t* --command \"\"npm run test:setup:html\"\" --silent\" --raw"
8081
},
8182
"shenanigans": {
8283
"name": "QuadsKeepr"
8384
},
8485
"types": "./src/index.d.ts",
8586
"version": "0.7.2"
86-
}
87+
}

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)