feat/edit steps (#7)

* refactor: ♻️ edit steps

* add md5 hash lib

* now step ids are generated based on titles and estimation

* feat:  edit steps

now add steps will be a modal for editing all steps

* chore(commitizen): init cz changelog

* chore(changelog): init git cliff

* feat(edit steps): add a message to alert on the fact that the record may change

* feat(task): task link is a normal button now

* with the good ids

* remove column

* autofocus to title

* --wip-- [skip ci]

* lint

* can modify the whole task when recording
This commit is contained in:
Julien Calixte
2024-04-09 00:06:07 +02:00
committed by GitHub
parent 4e83c26233
commit 364d0b2eed
22 changed files with 830 additions and 85 deletions

View File

@@ -12,13 +12,16 @@
"test": "pnpm lint && pnpm test:types && pnpm test:unit",
"build-only": "vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
"format": "prettier --write src/",
"commit": "cz"
},
"dependencies": {
"@types/md5": "^2.3.5",
"@vueuse/core": "^10.7.2",
"@vueuse/math": "^10.7.2",
"bulma": "^0.9.4",
"html-to-image": "^1.11.11",
"md5": "^2.3.0",
"nanoid": "^5.0.5",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
@@ -40,6 +43,7 @@
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.1",
"jsdom": "^24.0.0",
@@ -52,5 +56,10 @@
"vitest": "^1.3.0",
"vue-tsc": "^1.8.27",
"webdriverio": "^8.32.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}