From 0250855d702e92512fc7441efb3c4a96ecbd32ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Zorro?= Date: Mon, 11 Mar 2024 08:56:14 -0500 Subject: [PATCH] ci(general): bump version --- package.json | 90 +++++++++++++++++++++++++--------------------------- 1 file changed, 44 insertions(+), 46 deletions(-) diff --git a/package.json b/package.json index 1a4870f..c489d22 100644 --- a/package.json +++ b/package.json @@ -1,49 +1,47 @@ { - "name": "scaffoldizr", - "version": "0.2.0", - "description": "Opinionated Scaffolding Tool for Structurizr", - "module": "src/main.mjs", - "bin": { - "scfz": "lib/main.ts" - }, - "scripts": { - "test:dev": "bun test --watch", - "test": "bun test", - "test:ci": "bun test --coverage", - "build:dev": "bun build ./lib/main.ts --compile --watch --outfile ./dist/scfz", - "postinstall": "scripts/install-git-hooks.sh" - }, - "trustedDependencies": ["."], - "type": "module", - "dependencies": { - "chalk": "^5.3.0", - "change-case": "^5.2.0", - "handlebars": "^4.7.8", - "inquirer": "^9.2.15", - "minimist": "^1.2.8", - "yargs": "^17.7.2" - }, - "devDependencies": { - "@biomejs/biome": "^1.4.0", - "@types/bun": "^1.0.6", - "@types/inquirer": "^9.0.7", - "@types/yargs": "^17.0.32", - "commitizen": "^4.3.0", - "cz-conventional-changelog": "^3.3.0", - "generate-changelog": "^1.8.0", - "husky": "^8.0.3", - "lint-staged": "^14.0.0" - }, - "config": { - "commitizen": { - "path": "./node_modules/cz-conventional-changelog" + "name": "scaffoldizr", + "version": "0.2.1", + "description": "Opinionated Scaffolding Tool for Structurizr", + "module": "src/main.mjs", + "bin": { + "scfz": "lib/main.ts" + }, + "scripts": { + "test:dev": "bun test --watch", + "test": "bun test", + "test:ci": "bun test --coverage", + "postinstall": "scripts/install-git-hooks.sh" + }, + "trustedDependencies": ["."], + "type": "module", + "dependencies": { + "chalk": "^5.3.0", + "change-case": "^5.2.0", + "handlebars": "^4.7.8", + "inquirer": "^9.2.15", + "minimist": "^1.2.8", + "yargs": "^17.7.2" + }, + "devDependencies": { + "@biomejs/biome": "^1.4.0", + "@types/bun": "^1.0.6", + "@types/yargs": "^17.0.32", + "commitizen": "^4.3.0", + "cz-conventional-changelog": "^3.3.0", + "generate-changelog": "^1.8.0", + "husky": "^8.0.3", + "lint-staged": "^14.0.0" + }, + "config": { + "commitizen": { + "path": "./node_modules/cz-conventional-changelog" + } + }, + "resolutions": { + "signal-exit": "3.x" + }, + "lint-staged": { + "*.{json,ts,js,mjs,mts}": ["bun biome ci"], + "*.{ts,mjs}": ["bun test:ci"] } - }, - "resolutions": { - "signal-exit": "3.x" - }, - "lint-staged": { - "*.{json,ts,js,mjs,mts}": ["bun biome ci"], - "*.{ts,mjs}": ["bun test:ci"] - } }