botframework-webchat 4.15.6-main.20221129.ae47f35 → 4.15.6-main.20221202.0af2437
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/webchat-es5.js +1 -1
- package/dist/webchat-minimal.js +1 -1
- package/dist/webchat.js +1 -1
- package/lib/addVersion.js +1 -1
- package/package.json +24 -9
package/lib/addVersion.js
CHANGED
|
@@ -28,7 +28,7 @@ function setMetaTag(name, content) {
|
|
|
28
28
|
|
|
29
29
|
function addVersion(variant) {
|
|
30
30
|
setMetaTag('botframework-webchat:bundle:variant', variant);
|
|
31
|
-
setMetaTag('botframework-webchat:bundle:version', "4.15.6-main.
|
|
31
|
+
setMetaTag('botframework-webchat:bundle:version', "4.15.6-main.20221202.0af2437");
|
|
32
32
|
setMetaTag('botframework-webchat:core:version', _botframeworkWebchatCore.version);
|
|
33
33
|
setMetaTag('botframework-webchat:ui:version', _botframeworkWebchatComponent.version);
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "botframework-webchat",
|
|
3
|
-
"version": "4.15.6-main.
|
|
3
|
+
"version": "4.15.6-main.20221202.0af2437",
|
|
4
4
|
"description": "A highly-customizable web-based chat client for Azure Bot Services.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -24,14 +24,19 @@
|
|
|
24
24
|
"src/**/*"
|
|
25
25
|
],
|
|
26
26
|
"scripts": {
|
|
27
|
+
"auditfix": "npm audit fix --legacy-peer-deps || exit 0",
|
|
27
28
|
"build": "npm run build:typescript && npm run build:babel && npm run build:webpack",
|
|
28
29
|
"build:babel": "babel src --extensions .js,.ts,.tsx --ignore **/*.spec.js,**/*.spec.ts,**/*.spec.tsx,**/*.test.js,**/*.test.ts,**/*.test.tsx,__tests__/**/*.js,__tests__/**/*.ts,__tests__/**/*.tsx --out-dir lib --verbose",
|
|
29
30
|
"build:typescript": "tsc --project src/tsconfig.json",
|
|
30
31
|
"build:webpack": "webpack-cli",
|
|
31
32
|
"bump": "npm run bump:prod && npm run bump:dev",
|
|
32
|
-
"bump:dev": "npm install --legacy-peer-deps $(cat package.json | jq -r '(.devDependencies | keys) - (.skipBump | keys) | .[]' | awk '{print $1 \"@latest\"}')",
|
|
33
|
-
"bump:prod": "npm install --legacy-peer-deps --save-exact $(cat package.json | jq -r '(.dependencies | keys) - (.skipBump | keys) | .[]' | awk '{print $1 \"@latest\"}')",
|
|
33
|
+
"bump:dev": "npm install --legacy-peer-deps $(cat package.json | jq -r '(.devDependencies | keys) - ((.skipBump // {}) | keys) | .[]' | awk '{print $1 \"@latest\"}')",
|
|
34
|
+
"bump:prod": "npm install --legacy-peer-deps --save-exact $(cat package.json | jq -r '(.dependencies | keys) - ((.skipBump // {}) | keys) | .[]' | awk '{print $1 \"@latest\"}')",
|
|
34
35
|
"eslint": "npm run precommit",
|
|
36
|
+
"postauditfix": "npm run postbump",
|
|
37
|
+
"postbump": "cat package.json | jq '. + (.dependencies = ((.dependencies + (.localPeerDependencies // {})) | to_entries | sort_by(.key) | from_entries)) | (.devDependencies = ((.devDependencies + (.localPeerDevDependencies // {})) | to_entries | sort_by(.key) | from_entries))' > package-temp.json && mv package-temp.json package.json",
|
|
38
|
+
"preauditfix": "npm run prebump",
|
|
39
|
+
"prebump": "cat package.json | jq '(((.localPeerDependencies // {}) | keys | map([\"dependencies\", .])) + ((.localPeerDevDependencies // {}) | keys | map([\"devDependencies\", .]))) as $localPeerPaths | delpaths($localPeerPaths)' > package-temp.json && mv package-temp.json package.json",
|
|
35
40
|
"precommit": "npm run precommit:eslint -- src && npm run precommit:typecheck",
|
|
36
41
|
"precommit:eslint": "../../node_modules/.bin/eslint --report-unused-disable-directives --max-warnings 0",
|
|
37
42
|
"precommit:typecheck": "tsc --project ./src --emitDeclarationOnly false --esModuleInterop true --noEmit --pretty false",
|
|
@@ -49,10 +54,10 @@
|
|
|
49
54
|
"@babel/runtime": "7.19.0",
|
|
50
55
|
"adaptivecards": "2.11.1",
|
|
51
56
|
"botframework-directlinejs": "0.15.1",
|
|
52
|
-
"botframework-directlinespeech-sdk": "4.15.6-main.
|
|
53
|
-
"botframework-webchat-api": "4.15.6-main.
|
|
54
|
-
"botframework-webchat-component": "4.15.6-main.
|
|
55
|
-
"botframework-webchat-core": "4.15.6-main.
|
|
57
|
+
"botframework-directlinespeech-sdk": "4.15.6-main.20221202.0af2437",
|
|
58
|
+
"botframework-webchat-api": "4.15.6-main.20221202.0af2437",
|
|
59
|
+
"botframework-webchat-component": "4.15.6-main.20221202.0af2437",
|
|
60
|
+
"botframework-webchat-core": "4.15.6-main.20221202.0af2437",
|
|
56
61
|
"classnames": "2.3.2",
|
|
57
62
|
"core-js": "3.25.3",
|
|
58
63
|
"markdown-it": "13.0.1",
|
|
@@ -85,8 +90,8 @@
|
|
|
85
90
|
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
|
|
86
91
|
"concurrently": "^7.4.0",
|
|
87
92
|
"esbuild": "^0.15.9",
|
|
88
|
-
"isomorphic-react": "4.15.6-main.
|
|
89
|
-
"isomorphic-react-dom": "4.15.6-main.
|
|
93
|
+
"isomorphic-react": "4.15.6-main.20221202.0af2437",
|
|
94
|
+
"isomorphic-react-dom": "4.15.6-main.20221202.0af2437",
|
|
90
95
|
"source-map-loader": "^4.0.0",
|
|
91
96
|
"terser-webpack-plugin": "^5.3.6",
|
|
92
97
|
"typescript": "^4.8.3",
|
|
@@ -97,5 +102,15 @@
|
|
|
97
102
|
"peerDependencies": {
|
|
98
103
|
"react": ">= 16.8.6",
|
|
99
104
|
"react-dom": ">= 16.8.6"
|
|
105
|
+
},
|
|
106
|
+
"localPeerDependencies": {
|
|
107
|
+
"botframework-directlinespeech-sdk": "0.0.0-0",
|
|
108
|
+
"botframework-webchat-api": "0.0.0-0",
|
|
109
|
+
"botframework-webchat-component": "0.0.0-0",
|
|
110
|
+
"botframework-webchat-core": "0.0.0-0"
|
|
111
|
+
},
|
|
112
|
+
"localPeerDevDependencies": {
|
|
113
|
+
"isomorphic-react": "^0.0.0-0",
|
|
114
|
+
"isomorphic-react-dom": "^0.0.0-0"
|
|
100
115
|
}
|
|
101
116
|
}
|