Skip to content

Commit 493e156

Browse files
committed
refactor: fixed package.json files after restructuring the repo
1 parent f9631fa commit 493e156

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

lit-functions/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
],
1414
"scripts": {
1515
"test:unit": "vitest --environment=jsdom",
16+
"test": "vitest run --environment=jsdom",
1617
"build": "tsc"
1718
},
1819
"dependencies": {

package.json

+2-13
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"name": "lit-functions-repo",
33
"version": "1.0.0",
44
"description": "Functional components for lit-elements.",
5-
"main": "dist/index.js",
6-
"module": "dist/index.js",
7-
"types": "dist/index.d.ts",
85
"license": "MIT",
96
"private": true,
107
"workspaces": [
@@ -15,18 +12,10 @@
1512
"scripts": {
1613
"start:app:ts": "yarn workspace ts-component-tests dev",
1714
"start:app:js": "yarn workspace js-component-tests dev",
18-
"test:unit": "yarn workspace lit-functions vitest --environment=jsdom",
15+
"test:unit": "yarn workspace lit-functions test:unit",
16+
"test": "yarn workspace lit-functions test",
1917
"build": "yarn workspace lit-functions build"
2018
},
21-
"dependencies": {
22-
"lit": "^3.1.4"
23-
},
24-
"devDependencies": {
25-
"@open-wc/testing": "^4.0.0",
26-
"jsdom": "^24.1.0",
27-
"typescript": "^5.4.5",
28-
"vitest": "^1.6.0"
29-
},
3019
"keywords": [
3120
"webcomponents",
3221
"lit-element",

0 commit comments

Comments
 (0)