@servicetitan/hammer-token 1.1.0 → 1.1.1
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.md +13 -0
- package/package.json +5 -3
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-lint.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v1.1.1 (Thu Jul 11 2024)
|
|
2
|
+
|
|
3
|
+
#### 📝 Dependencies
|
|
4
|
+
|
|
5
|
+
- ANV-1529: Add `commander` to `optionalDependencies` in `hammer-token` [#556](https://github.com/servicetitan/hammer/pull/556) ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n) [@rgdelato](https://github.com/rgdelato))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- Derek Watson ([@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n))
|
|
10
|
+
- Ryan De La Torre ([@rgdelato](https://github.com/rgdelato))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v1.1.0 (Wed Jul 10 2024)
|
|
2
15
|
|
|
3
16
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@servicetitan/hammer-token",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "build/web/index.js",
|
|
6
6
|
"types": "build/web/index.d.ts",
|
|
@@ -14,10 +14,12 @@
|
|
|
14
14
|
"lint": "eslint",
|
|
15
15
|
"nuke": "pnpm clean && rimraf node_modules"
|
|
16
16
|
},
|
|
17
|
+
"optionalDependencies": {
|
|
18
|
+
"commander": "^12.1.0"
|
|
19
|
+
},
|
|
17
20
|
"devDependencies": {
|
|
18
|
-
"commander": "^12.1.0",
|
|
19
21
|
"fs-extra": "^11.2.0",
|
|
20
22
|
"style-dictionary": "latest"
|
|
21
23
|
},
|
|
22
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "f66479cfe50b7e2205905613d289694c7f52cf26"
|
|
23
25
|
}
|