Skip to content

Commit 60cbc10

Browse files
chore: version bump; dependency updates
1 parent 6fab487 commit 60cbc10

File tree

4 files changed

+234
-183
lines changed

4 files changed

+234
-183
lines changed

package.json

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "dandi",
33
"private": true,
4-
"version": "1.0.0-alpha.71",
4+
"version": "1.0.0-alpha.77",
55
"description": "",
66
"scripts": {
77
"setup": "./setup",
88
"install-packages": "builder yarn",
99
"publish-packages": "builder publish",
10+
"unpublish-packages": "builder unpublish",
1011
"update-package-configs": "builder update-configs",
1112
"update-packages": "builder yarn update",
1213
"build": "builder build",
@@ -31,6 +32,7 @@
3132
"homepage": "https://github.com/just-dandi/dandi#readme",
3233
"license": "MIT",
3334
"devDependencies": {
35+
"@rxjs-stuff/marbles": "^2.0.0-pre.4",
3436
"@types/chai": "^4.2.15",
3537
"@types/chai-as-promised": "^7.1.3",
3638
"@types/colors": "^1.2.1",
@@ -44,25 +46,28 @@
4446
"chai-as-promised": "^7.1.1",
4547
"colors": "^1.4.0",
4648
"coveralls": "^3.1.0",
47-
"dotenv": "^8.2.0",
49+
"dotenv": "^10.0.0",
4850
"eslint": "^7.22.0",
4951
"eslint-plugin-import": "^2.22.1",
5052
"eslint-plugin-mocha": "^8.1.0",
5153
"eslint-plugin-prettier": "^3.3.1",
5254
"lodash": "^4.17.21",
5355
"longjohn": "^0.2.12",
5456
"luxon": "^1.26.0",
55-
"mocha": "^8.3.2",
57+
"mocha": "^9.1.3",
5658
"nyc": "^15.1.0",
5759
"prettier": "^2.2.1",
5860
"rimraf": "^3.0.2",
59-
"rxjs": "^6.6.6",
60-
"sinon": "^9.2.4",
61-
"sinon-chai": "^3.5.0",
61+
"rxjs": "^7.4.0",
62+
"sinon": "^11.1.2",
63+
"sinon-chai": "^3.7.0",
6264
"ts-custom-error-shim": "^1.0.2",
63-
"ts-node": "^9.1.1",
64-
"tsconfig-paths": "^3.9.0",
65-
"typescript": "^4.2.3",
65+
"ts-node": "^10.4.0",
66+
"tsconfig-paths": "^3.11.0",
67+
"typescript": "^4.4.4",
6668
"uuid": "^8.3.2"
67-
}
69+
},
70+
"exclude": [
71+
"*.tsbuildinfo"
72+
]
6873
}

tsconfig.json

+8-15
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,20 @@
55
"module": "commonjs",
66
"moduleResolution": "node",
77
"declaration": true,
8+
"declarationMap": true,
9+
"inlineSources": true,
810
"emitDecoratorMetadata": true,
911
"experimentalDecorators": true,
1012
"resolveJsonModule": true,
1113
"skipLibCheck": true,
1214
"outDir": "out",
13-
"lib": [
14-
"ESNext"
15-
],
15+
"lib": ["ESNext"],
1616
"baseUrl": ".",
1717
"paths": {
18-
"@dandi/*": [
19-
"./packages/dandi/*"
20-
],
21-
"@dandi-contrib/*": [
22-
"./packages/dandi-contrib/*"
23-
]
24-
}
18+
"@dandi/*": ["./packages/dandi/*"],
19+
"@dandi-contrib/*": ["./packages/dandi-contrib/*"]
20+
},
21+
"typeRoots": ["./node_modules/@rxjs-stuff/marbles/@types", "./node_modules/@types"]
2522
},
26-
"exclude": [
27-
"node_modules",
28-
"out",
29-
"builder/dist"
30-
]
23+
"exclude": ["node_modules", "out", "builder/dist"]
3124
}

typings.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
declare module '*.json' {
2-
const value: any
2+
const value: unknown
33
export = value
44
}

0 commit comments

Comments
 (0)