@blakearoberts/visage 0.0.4-rc.1 → 0.0.4-rc.11
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/docker-compose.images.yml +2 -2
- package/package.json +9 -15
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blakearoberts/visage",
|
|
3
|
-
"version": "0.0.4-rc.
|
|
3
|
+
"version": "0.0.4-rc.11",
|
|
4
4
|
"description": "Vite plugin for local development with HMR and OIDC session cookie lifecycle semantics.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Blake Roberts",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/blakearoberts/visage.git"
|
|
10
|
+
"url": "https://github.com/blakearoberts/visage.git",
|
|
11
|
+
"directory": "packages/visage"
|
|
11
12
|
},
|
|
12
13
|
"bugs": {
|
|
13
14
|
"url": "https://github.com/blakearoberts/visage/issues"
|
|
@@ -44,20 +45,14 @@
|
|
|
44
45
|
"registry": "https://registry.npmjs.org"
|
|
45
46
|
},
|
|
46
47
|
"scripts": {
|
|
47
|
-
"build": "
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"example:simple": "cd examples/simple && npm run dev",
|
|
51
|
-
"format": "prettier --write .",
|
|
52
|
-
"format:check": "prettier --check .",
|
|
48
|
+
"build": "rollup -c",
|
|
49
|
+
"check": "npm run check:type",
|
|
50
|
+
"check:type": "npm run typecheck",
|
|
53
51
|
"pretest:e2e": "npm run test:e2e:setup",
|
|
54
|
-
"
|
|
55
|
-
"test": "npm run typecheck && npm run test:
|
|
56
|
-
"test:all": "npm test && npm run test:e2e",
|
|
52
|
+
"test": "tsx --test test/unit/*.test.ts",
|
|
53
|
+
"test:all": "npm run typecheck && npm test && npm run test:e2e",
|
|
57
54
|
"test:e2e": "playwright test test/e2e",
|
|
58
|
-
"test:e2e:setup": "npm run build &&
|
|
59
|
-
"test:e2e:setup:examples": "npm --prefix examples/simple install --no-audit --no-fund && npm --prefix examples/ssr install --no-audit --no-fund && npm --prefix examples/external-idp install --no-audit --no-fund",
|
|
60
|
-
"test:unit": "tsx --test test/unit/*.test.ts",
|
|
55
|
+
"test:e2e:setup": "npm run build && playwright install chromium",
|
|
61
56
|
"typecheck": "tsc --noEmit"
|
|
62
57
|
},
|
|
63
58
|
"dependencies": {
|
|
@@ -72,7 +67,6 @@
|
|
|
72
67
|
"@playwright/test": "^1.60.0",
|
|
73
68
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
74
69
|
"@types/node": "^25.8.0",
|
|
75
|
-
"prettier": "^3.8.3",
|
|
76
70
|
"rollup": "^4.60.4",
|
|
77
71
|
"tslib": "^2.8.1",
|
|
78
72
|
"tsx": "^4.22.3",
|