claude-code-wakatime 3.0.4 → 3.0.5
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/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -41127,7 +41127,7 @@ var Options = class {
|
|
|
41127
41127
|
};
|
|
41128
41128
|
|
|
41129
41129
|
// src/version.ts
|
|
41130
|
-
var VERSION = "3.0.
|
|
41130
|
+
var VERSION = "3.0.5";
|
|
41131
41131
|
|
|
41132
41132
|
// src/dependencies.ts
|
|
41133
41133
|
var import_adm_zip = __toESM(require_adm_zip());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-wakatime",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"description": "WakaTime plugin for Claude Code",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-code-wakatime": "dist/index.js"
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"build:legacy": "esbuild src/install-hooks.ts --bundle --platform=node --outfile=dist/install-hooks.js",
|
|
12
12
|
"build": "npm run build:legacy && esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
|
|
13
13
|
"watch": "npm run prebuild && tsc --watch",
|
|
14
|
-
"release:major": "npm
|
|
15
|
-
"release:minor": "npm
|
|
16
|
-
"release:patch": "npm
|
|
14
|
+
"release:major": "npm version major && npm run build && npm publish && git push && git push --tags",
|
|
15
|
+
"release:minor": "npm version minor && npm run build && npm publish && git push && git push --tags",
|
|
16
|
+
"release:patch": "npm version patch && npm run build && npm publish && git push && git push --tags"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|