Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
refactor: remove all usages of any
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 committed Sep 14, 2020
1 parent 2bb4386 commit 8c1e001
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 78 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,4 @@ jspm_packages
# Optional REPL history
.node_repl_history

/uts.js
/uts.d.ts
/dist
5 changes: 2 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/tsconfig.json
/test.js
/uts.ts
/*
!/dist
17 changes: 14 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
"name": "uts",
"version": "1.1.3",
"description": "Microscopic time series database for Node and the browser",
"main": "uts.js",
"typings": "uts.d.ts",
"main": "dist/uts.js",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "rimraf dist && tsc",
"watch": "rimraf dist && tsc --watch",
"test": "npm run test:unit && npm run test:lint && npm run test:fmt",
"test:unit": "mocha \"dist/**/*.test.js\"",
"test:lint": "eslint \"src/**/*.ts\"",
Expand All @@ -15,7 +17,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/WatchBeam/uts.git"
"url": "git+https://github.com/microsoft/uts.git"
},
"keywords": [
"time",
Expand All @@ -26,7 +28,7 @@
"author": "Connor Peet <connor@peet.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WatchBeam/uts/issues"
"url": "https://github.com/microsoft/uts/issues"
},
"prettier": {
"trailingComma": "all",
Expand All @@ -35,7 +37,7 @@
"tabWidth": 2,
"arrowParens": "avoid"
},
"homepage": "https://github.com/WatchBeam/uts#readme",
"homepage": "https://github.com/microsoft/uts#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
Expand All @@ -47,6 +49,7 @@
"eslint-plugin-header": "^3.1.0",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"typescript": "^4.0.2"
}
Expand Down
File renamed without changes.
Loading

0 comments on commit 8c1e001

Please sign in to comment.