Skip to content

Commit b3559c8

Browse files
committed
Initial commit
0 parents  commit b3559c8

23 files changed

+2183
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"workbench.iconTheme": "diagonal-architecture-light-icon-theme"
3+
}

package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "vitest-bdd",
3+
"private": true,
4+
"version": "0.0.0",
5+
"homepage": "https://tiliajs.com",
6+
"description": "vitest-bdd monorepo",
7+
"main": "index.js",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/tiliajs/tilia.git"
11+
},
12+
"scripts": {
13+
"plugin": "pnpm --filter vitest-bdd",
14+
"app": "pnpm --filter test-app",
15+
"build": "pnpm -r build",
16+
"canary": "./bin/publish-canary.sh",
17+
"pub": "./bin/publish.sh",
18+
"pretest": "pnpm build",
19+
"test": "pnpm test"
20+
},
21+
"devDependencies": {
22+
"vitest": "^3.1.3"
23+
},
24+
"keywords": [],
25+
"author": "Gaspard Anna Bucher <g.a.bucher@midasum.com>",
26+
"license": "MIT"
27+
}

0 commit comments

Comments
 (0)