kanban-lite 1.2.11 → 1.2.13
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/.vscodeignore +23 -0
- package/LICENSE +22 -0
- package/package.json +2 -2
package/.vscodeignore
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Source & config
|
|
2
|
+
src/**
|
|
3
|
+
e2e/**
|
|
4
|
+
tmp/**
|
|
5
|
+
.kanban/**
|
|
6
|
+
tsconfig*.json
|
|
7
|
+
postcss.config.js
|
|
8
|
+
tailwind.config.js
|
|
9
|
+
vite.standalone.config.ts
|
|
10
|
+
vitest*.config.ts
|
|
11
|
+
eslint.config.mjs
|
|
12
|
+
|
|
13
|
+
# Build intermediates (keep only dist/)
|
|
14
|
+
dist/sdk/sdk/**
|
|
15
|
+
|
|
16
|
+
# Node modules
|
|
17
|
+
node_modules/**
|
|
18
|
+
|
|
19
|
+
# Test & coverage artifacts
|
|
20
|
+
coverage/**
|
|
21
|
+
**/*.test.ts
|
|
22
|
+
**/*.spec.ts
|
|
23
|
+
**/__tests__/**
|
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 LachyFS
|
|
4
|
+
Copyright (c) 2026 LachyFS
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kanban-lite",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.13",
|
|
4
4
|
"description": "Kanban board manager - VSCode extension, CLI, MCP server, and standalone web app",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"docs:webhooks": "pnpm --dir ../.. run docs:root:webhooks",
|
|
127
127
|
"package": "vsce package --no-dependencies -o ../../releases/kanban-lite-$(node -p \"require('./package.json').version\").vsix",
|
|
128
128
|
"publish:npm": "npm publish --ignore-scripts",
|
|
129
|
-
"publish:marketplace": "vsce publish && ovsx publish",
|
|
129
|
+
"publish:marketplace": "vsce publish --no-dependencies && ovsx publish --no-dependencies",
|
|
130
130
|
"publish:all": "pnpm run publish:npm && pnpm run publish:marketplace",
|
|
131
131
|
"release": "npm version patch && pnpm run build && pnpm run package && pnpm run publish:all",
|
|
132
132
|
"release:minor": "npm version minor && pnpm run build && pnpm run package && pnpm run publish:all",
|