Compare commits

..

2 Commits

Author SHA1 Message Date
98fb6e363f chore: sync versions to v1.9.1
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 2s
Monorepo Pipeline / 🧪 Test (push) Successful in 1m13s
Monorepo Pipeline / 🧹 Lint (push) Successful in 3m6s
Monorepo Pipeline / 🏗️ Build (push) Successful in 3m18s
Monorepo Pipeline / 🐳 Build Image Processor (push) Failing after 55s
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Failing after 43s
Monorepo Pipeline / 🐳 Build Build-Base (push) Successful in 42s
Monorepo Pipeline / 🐳 Build Production Runtime (push) Successful in 38s
Monorepo Pipeline / 🚀 Release (push) Successful in 2m50s
2026-02-27 19:36:15 +01:00
a3061b501a fix(husky): correct pre-push exit code to avoid duplicate pushes 2026-02-27 19:36:13 +01:00
25 changed files with 26 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
# Project
IMAGE_TAG=v1.9.0
IMAGE_TAG=v1.9.1
PROJECT_NAME=sample-website
PROJECT_COLOR=#82ed20

View File

@@ -37,9 +37,10 @@ do
echo "✨ Success! The hook synchronized the versions and pushed the updated tag for you."
echo " Note: The original push command was aborted in favor of the auto-push. This is normal."
exit 0 # Change to exit 0 to not show as an 'error' in vscode/terminal, though original push will still be technically 'failed' by git
exit 1 # We MUST exit 1 here to stop git from proceeding with the original push which would fail
else
echo "✨ Versions already in sync for $TAG."
exit 0 # Allow git to proceed with the original push since we didn't do it ourselves
fi
fi
done

View File

@@ -1,6 +1,6 @@
{
"name": "sample-website",
"version": "1.9.0",
"version": "1.9.1",
"private": true,
"type": "module",
"scripts": {

View File

@@ -47,7 +47,7 @@
"pino-pretty": "^13.1.3",
"require-in-the-middle": "^8.0.1"
},
"version": "1.9.0",
"version": "1.9.1",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/cli",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/cloner",
"version": "1.9.0",
"version": "1.9.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/concept-engine",
"version": "1.9.0",
"version": "1.9.1",
"private": true,
"description": "AI-powered web project concept generation and analysis",
"type": "module",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/content-engine",
"version": "1.9.0",
"version": "1.9.1",
"private": false,
"type": "module",
"main": "./dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/eslint-config",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/estimation-engine",
"version": "1.9.0",
"version": "1.9.1",
"private": true,
"type": "module",
"main": "./dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/gatekeeper",
"version": "1.9.0",
"version": "1.9.1",
"private": true,
"type": "module",
"scripts": {

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/husky-config",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/infra",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/journaling",
"version": "1.9.0",
"version": "1.9.1",
"private": true,
"type": "module",
"main": "./dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/mail",
"version": "1.9.0",
"version": "1.9.1",
"private": false,
"publishConfig": {
"access": "public",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/meme-generator",
"version": "1.9.0",
"version": "1.9.1",
"private": false,
"type": "module",
"main": "./dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/next-config",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/next-feedback",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/next-observability",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/next-utils",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/observability",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/page-audit",
"version": "1.9.0",
"version": "1.9.1",
"private": true,
"description": "AI-powered website IST-analysis using DataForSEO and Gemini",
"type": "module",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/pdf",
"version": "1.9.0",
"version": "1.9.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/thumbnail-generator",
"version": "1.9.0",
"version": "1.9.1",
"private": false,
"type": "module",
"main": "./dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@mintel/tsconfig",
"version": "1.9.0",
"version": "1.9.1",
"publishConfig": {
"access": "public",
"registry": "https://git.infra.mintel.me/api/packages/mmintel/npm"