evolit 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "evolit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "A convention-driven application framework for LitSX and web components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "yarn@4.10.3",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"start": "node ./src/cli.js start",
|
|
43
43
|
"test": "node --test test/*.test.js",
|
|
44
44
|
"test:browser": "playwright test",
|
|
45
|
-
"typecheck": "
|
|
45
|
+
"typecheck": "tsc -p jsconfig.json --noEmit",
|
|
46
46
|
"release:check": "yarn test && yarn typecheck && yarn pack --dry-run"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
@@ -59,10 +59,9 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@jridgewell/remapping": "^2.3.5",
|
|
62
|
-
"@litsx/compiler": "1.0.0-next.
|
|
63
|
-
"@litsx/core": "1.0.0-next.
|
|
64
|
-
"@litsx/ssr": "1.0.0-next.
|
|
65
|
-
"@litsx/typescript": "^0.9.0",
|
|
62
|
+
"@litsx/compiler": "1.0.0-next.12",
|
|
63
|
+
"@litsx/core": "1.0.0-next.8",
|
|
64
|
+
"@litsx/ssr": "1.0.0-next.5",
|
|
66
65
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
67
66
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
68
67
|
"lit": "^3.3.3",
|
package/src/scaffold.js
CHANGED
|
@@ -23,14 +23,13 @@ async function writeSitePackageJson(targetDirectory, siteName) {
|
|
|
23
23
|
dev: "evolit dev",
|
|
24
24
|
build: "evolit build",
|
|
25
25
|
start: "evolit start",
|
|
26
|
-
typecheck: "
|
|
26
|
+
typecheck: "tsc -p jsconfig.json --noEmit",
|
|
27
27
|
},
|
|
28
28
|
dependencies: {
|
|
29
|
-
"@litsx/core": "1.0.0-next.
|
|
29
|
+
"@litsx/core": "1.0.0-next.8",
|
|
30
30
|
evolit: frameworkVersion,
|
|
31
31
|
},
|
|
32
32
|
devDependencies: {
|
|
33
|
-
"@litsx/typescript": "^0.9.0",
|
|
34
33
|
"typescript": "^6.0.0",
|
|
35
34
|
},
|
|
36
35
|
};
|