Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
.husky/
pnpm-lock.yaml
.pnpm-store
mise.lock
mise.toml

# Docs
*.md
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ pnpm docker:prod up -d
## pnpm Config

- `minimumReleaseAge` - Only install package versions that are at least X minutes old (helps avoid fresh compromised releases).
- `onlyBuiltDependencies` - Only run build/postinstall scripts for this allowlist of dependencies. This reduces the overall attack surface, but scripts for these packages will still run if a compromised version is installed.
- `allowBuilds` - Only run build/postinstall scripts for this allowlist of dependencies. This reduces the overall attack surface, but scripts for these packages will still run if a compromised version is installed.
- `strictPeerDependencies` - If this is enabled, commands will fail if there is a missing or invalid peer dependency in the tree.
- `strictDepBuilds` - When strictDepBuilds is enabled, the installation will exit with a non-zero exit code if any dependencies have unreviewed build scripts (aka postinstall scripts).
- `engineStrict` - If this is enabled, pnpm will not install any package that claims to not be compatible with the current Node version.
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"next": "catalog:",
"next-auth": "catalog:",
"next-intl": "catalog:",
"next-public-env": "1.0.0",
"next-public-env": "1.1.0",
"next-themes": "catalog:",
"postcss": "catalog:",
"react": "catalog:",
Expand Down
33 changes: 33 additions & 0 deletions mise.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[settings]
lockfile = true
minimum_release_age = "7d"
idiomatic_version_file_enable_tools = ["node", "pnpm"]
19 changes: 16 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,22 @@
"version": "0.0.0",
"private": true,
"engines": {
"node": "24.11.0"
"node": "24.18.1",
"pnpm": "11.18.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.18.1",
"onFail": "warn"
},
"packageManager": {
"name": "pnpm",
"version": "11.18.0",
"onFail": "warn"
}
},
"packageManager": "pnpm@11.18.0",
"scripts": {
"bootstrap": "bash ./scripts/bootstrap.sh",
"build": "turbo run build --parallel --log-order=grouped",
Expand Down Expand Up @@ -54,6 +68,5 @@
"remark-cli": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}
}
2 changes: 1 addition & 1 deletion packages/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"rootDir": "./src",
"paths": {
"@infinum/ui/*": ["./src/*"]
}
Comment thread
kamdubiel marked this conversation as resolved.
Expand Down
Loading
Loading