Skip to content

Commit c808b42

Browse files
committed
chore: fixed package publishing
1 parent 5213df8 commit c808b42

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

test/package.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
{
22
"name": "@dpkit/test",
33
"type": "module",
4-
"private": true,
4+
"main": "build/index.js",
5+
"version": "0.1.0",
6+
"license": "MIT",
7+
"author": "Evgeny Karev",
8+
"repository": "https://github.com/datisthq/dpkit",
9+
"description": "Fast TypeScript data management framework based on the Data Package standard",
10+
"keywords": [
11+
"data",
12+
"package",
13+
"typescript",
14+
"validation",
15+
"quality",
16+
"fair",
17+
"test"
18+
],
19+
"scripts": {
20+
"build": "tsc --build"
21+
},
522
"dependencies": {
623
"@pollyjs/adapter-fetch": "^6.0.6",
724
"@pollyjs/core": "^6.0.6",

test/tsconfig.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "../tsconfig.json",
3+
"include": ["**/*.ts"],
4+
"exclude": ["**/build/"],
5+
"compilerOptions": {
6+
"outDir": "build",
7+
"noEmit": false,
8+
"declaration": true
9+
}
10+
}

0 commit comments

Comments
 (0)