@stack-spot/ai-chat-widget 1.3.1 → 1.3.2
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/CHANGELOG.md +8 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.2](https://github.com/stack-spot/portal-ai-chat-widget/compare/ai-chat-widget@v1.3.1...ai-chat-widget@v1.3.2) (2024-11-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* removes postinstall from published package ([1ecb2f3](https://github.com/stack-spot/portal-ai-chat-widget/commit/1ecb2f3c5b974b3c3e0884f5138d04fc78249643))
|
|
9
|
+
* removes postinstall from published package ([1ecb2f3](https://github.com/stack-spot/portal-ai-chat-widget/commit/1ecb2f3c5b974b3c3e0884f5138d04fc78249643))
|
|
10
|
+
|
|
3
11
|
## [1.3.1](https://github.com/stack-spot/portal-ai-chat-widget/compare/ai-chat-widget@v1.3.0...ai-chat-widget@v1.3.1) (2024-11-01)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stack-spot/ai-chat-widget",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"build": "rimraf dist && tsc && tsc-esm-fix --target='dist' && cpy src/layout.css dist --flat",
|
|
8
|
+
"build": "rimraf dist && pnpm generate:metadata && tsc && tsc-esm-fix --target='dist' && cpy src/layout.css dist --flat",
|
|
9
9
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
10
10
|
"generate:metadata": "pnpm app-metadata --lockfile ../../pnpm-lock.yaml --path packages/widget"
|
|
11
11
|
},
|