solid-logic 3.0.9-616b9f9 → 3.0.9-66a8779

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,10 +1,11 @@
1
1
  {
2
2
  "name": "solid-logic",
3
3
  "type": "module",
4
- "version": "3.0.9-616b9f9",
4
+ "version": "3.0.9-66a8779",
5
5
  "description": "Core business logic of SolidOS",
6
6
  "main": "dist/solid-logic.js",
7
7
  "types": "dist/index.d.ts",
8
+ "sideEffects": false,
8
9
  "files": [
9
10
  "dist/",
10
11
  "README.md",
@@ -12,9 +13,10 @@
12
13
  ],
13
14
  "scripts": {
14
15
  "clean": "rm -rf dist src/versionInfo.ts",
15
- "build": "npm run clean && npm run build-types && npm run build-version && rollup -c",
16
+ "build": "npm run clean && npm run build-types && npm run build-version && npm run build-dist",
16
17
  "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
17
18
  "build-types": "tsc --emitDeclarationOnly",
19
+ "build-dist": "rollup -c",
18
20
  "lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
19
21
  "typecheck": "tsc --noEmit",
20
22
  "typecheck:test": "tsc --noEmit -p tsconfig.test.json",
@@ -23,8 +25,8 @@
23
25
  "test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug",
24
26
  "ignore:prepublishOnly": "npm run build && npm run test",
25
27
  "preversion": "npm run lint && npm run typecheck && npm test",
26
- "postversion": "git push --follow-tags",
27
- "watch": "tsc --watch"
28
+ "postversion": "git push origin main --follow-tags",
29
+ "watch": "npm run build-version && tsc --watch"
28
30
  },
29
31
  "repository": {
30
32
  "type": "git",
@@ -47,6 +49,7 @@
47
49
  "@types/jest": "^30.0.0",
48
50
  "@typescript-eslint/eslint-plugin": "^8.34.0",
49
51
  "@typescript-eslint/parser": "^8.34.0",
52
+ "babel-jest": "^30.1.2",
50
53
  "eslint": "^9.28.0",
51
54
  "eslint-config-prettier": "^10.1.8",
52
55
  "eslint-plugin-import": "^2.32.0",
@@ -60,7 +63,8 @@
60
63
  "rollup-plugin-terser": "^7.0.2",
61
64
  "ts-loader": "^9.5.4",
62
65
  "tslib": "^2.8.1",
63
- "typescript": "^5.9.2"
66
+ "typescript": "^5.9.2",
67
+ "typescript-eslint": "^8.42.0"
64
68
  },
65
69
  "dependencies": {
66
70
  "@inrupt/solid-client-authn-browser": "1.17",