Skip to content

Commit 2166ad9

Browse files
committed
version
1 parent c3d67d4 commit 2166ad9

File tree

6 files changed

+311
-345
lines changed

6 files changed

+311
-345
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.cjs

Lines changed: 0 additions & 22 deletions
This file was deleted.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@orbitdb/ordered-keyvalue-db",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Ordered keyvalue database type for orbit-db.",
55
"author": "Julien Jean Malard-Adam",
66
"keywords": [
@@ -10,18 +10,19 @@
1010
"publishConfig": {
1111
"access": "public"
1212
},
13-
"main": "./dist/src/index.js",
13+
"main": "./dist/index.js",
1414
"type": "module",
15-
"types": "./dist/src/index.d.ts",
16-
"exports": "./dist/src/index.js",
15+
"types": "./dist/index.d.ts",
16+
"exports": "./dist/index.js",
1717
"scripts": {
1818
"clean": "rimraf dist",
19-
"compile": "pnpm updateVersion && pnpm format && pnpm clean && pnpm tspc -p tsconfig.build.json",
19+
"compile": "pnpm tspc -p tsconfig.json",
20+
"compile:prod": "pnpm updateVersion && pnpm format && pnpm clean && pnpm tspc -p tsconfig.build.json",
2021
"test": "pnpm test:node && pnpm test:browser",
2122
"test:node": "pnpm compile && pnpm aegir test -t node --cov -- --exit",
2223
"test:browser": "pnpm compile && pnpm aegir test -t browser --cov -- --exit",
2324
"format": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint",
24-
"release": "pnpm test && (git commit -a -m 'version' || true) && pnpm publish",
25+
"release": "pnpm test && pnpm compile:prod && (git commit -a -m 'version' || true) && pnpm publish",
2526
"updateVersion": "pnpm genversion --es6 --semi src/version.ts"
2627
},
2728
"dependencies": {
@@ -33,15 +34,13 @@
3334
"@chainsafe/libp2p-noise": "^15.1.0",
3435
"@chainsafe/libp2p-yamux": "^6.0.2",
3536
"@constl/orbit-db-types": "^2.0.0",
37+
"@eslint/js": "^9.7.0",
3638
"@helia/block-brokers": "^3.0.2",
3739
"@libp2p/circuit-relay-v2": "^1.1.2",
3840
"@libp2p/identify": "^2.1.2",
3941
"@libp2p/webrtc": "^4.1.2",
4042
"@libp2p/websockets": "^8.1.2",
4143
"@types/mocha": "^10.0.7",
42-
"@types/uuid": "^9.0.8",
43-
"@typescript-eslint/eslint-plugin": "^7.16.0",
44-
"@typescript-eslint/parser": "^7.16.0",
4544
"aegir": "^44.0.1",
4645
"blockstore-core": "^4.4.1",
4746
"blockstore-level": "^1.1.8",
@@ -54,6 +53,7 @@
5453
"rimraf": "^6.0.1",
5554
"ts-patch": "^3.2.1",
5655
"typescript": "^5.5.3",
56+
"typescript-eslint": "^7.16.0",
5757
"typescript-transform-paths": "^3.4.7",
5858
"wherearewe": "^2.0.1"
5959
},

0 commit comments

Comments
 (0)