Skip to content

Commit

Permalink
chore(server): v1.0.0 (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentlp authored Jan 25, 2022
1 parent 0f18c3a commit c381196
Show file tree
Hide file tree
Showing 19 changed files with 44 additions and 65 deletions.
2 changes: 0 additions & 2 deletions .yarn/versions/2c52e3b6.yml

This file was deleted.

Empty file removed .yarn/versions/2cf58700.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/6e28d4fc.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .yarn/versions/85495e24.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .yarn/versions/f8924e65.yml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# [1.0.0](https://github.com/botpress/messaging/compare/v0.1.23...v1.0.0) (2022-01-25)



## [0.1.23](https://github.com/botpress/messaging/compare/v0.1.22...v0.1.23) (2022-01-19)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/messaging",
"version": "0.1.23",
"version": "1.0.0",
"description": "Botpress messaging repo",
"author": "Botpress, Inc.",
"license": "AGPL-3.0",
Expand Down
9 changes: 3 additions & 6 deletions packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
"name": "@botpress/messaging-base",
"version": "0.0.2",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"license": "AGPL-3.0",
"scripts": {
"build": "yarn && yarn run -T tsc --build",
"watch": "yarn && yarn run -T tsc --build --watch",
"prepublish": "yarn --immutable && yarn run -T tsc --build && rimraf dist/.tsbuildinfo"
"prepublish": "yarn run -T rimraf dist && yarn --immutable && yarn run -T tsc --build && yarn run -T rimraf dist/.tsbuildinfo"
},
"files": [
"dist"
],
"devDependencies": {
"rimraf": "^3.0.2"
}
]
}
2 changes: 1 addition & 1 deletion packages/board/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/messaging-board",
"version": "0.0.1",
"version": "0.1.0",
"source": "src/index.html",
"license": "AGPL-3.0",
"scripts": {
Expand Down
8 changes: 6 additions & 2 deletions packages/channels/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
{
"name": "@botpress/messaging-channels",
"version": "0.0.1",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"license": "AGPL-3.0",
"scripts": {
"build": "yarn && yarn run -T tsc --build",
"watch": "yarn && yarn run -T tsc --build --watch",
"example": "yarn && yarn run -T ts-node-dev --debounce 500 --transpile-only example/index.ts"
"example": "yarn && yarn run -T ts-node-dev --debounce 500 --transpile-only example/index.ts",
"prepublish": "yarn run -T rimraf dist && yarn --immutable && yarn run -T tsc --build && yarn run -T rimraf dist/.tsbuildinfo"
},
"files": [
"dist"
],
"devDependencies": {
"@types/cli-color": "^2.0.2",
"@types/express": "^4.17.13",
Expand Down
7 changes: 3 additions & 4 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@botpress/messaging-client",
"version": "0.0.14",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"license": "AGPL-3.0",
"scripts": {
"build": "yarn && yarn run -T tsc --build",
"watch": "yarn && yarn run -T tsc --build --watch",
"prepublish": "yarn --immutable && yarn run -T tsc --build && rimraf dist/.tsbuildinfo"
"prepublish": "yarn run -T rimraf dist && yarn --immutable && yarn run -T tsc --build && yarn run -T rimraf dist/.tsbuildinfo"
},
"files": [
"dist"
Expand All @@ -18,11 +18,10 @@
"@types/jest": "^27.4.0",
"@types/node": "^16.11.13",
"@types/uuid": "^8.3.4",
"rimraf": "^3.0.2",
"uuid": "^8.3.2"
},
"dependencies": {
"@botpress/messaging-base": "0.0.2",
"@botpress/messaging-base": "1.0.0",
"axios": "^0.21.4",
"joi": "^17.5.0"
}
Expand Down
1 change: 0 additions & 1 deletion packages/components/.npmignore

This file was deleted.

9 changes: 3 additions & 6 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"name": "@botpress/messaging-components",
"version": "0.0.8",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.tsx",
"license": "AGPL-3.0",
"scripts": {
"prebuild": "rimraf dist/",
"postbuild": "ncp ./src/css ./dist/css",
"build": "yarn && yarn run -T tsc --build",
"watch": "yarn && yarn run -T tsc --build --watch",
"storybook": "start-storybook -p 6006 -c story/config",
"build-storybook": "build-storybook -c story/config",
"prepublishOnly": "yarn build"
"prepublish": "yarn run -T rimraf dist && yarn --immutable && yarn run -T tsc --build && yarn run -T rimraf dist/.tsbuildinfo && yarn run ncp ./src/css ./dist/css"
},
"files": [
"dist"
Expand Down Expand Up @@ -54,8 +52,7 @@
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2"
"react-test-renderer": "^17.0.2"
},
"peerDependencies": {
"html-truncate": "^1.2.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/messaging-engine",
"version": "0.0.1",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
Expand Down
7 changes: 4 additions & 3 deletions packages/inject/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "@botpress/webchat-inject",
"version": "0.0.2",
"version": "0.1.0",
"license": "AGPL-3.0",
"scripts": {
"build": "yarn && yarn run -T parcel build src/index.html src/inject.js",
"watch": "yarn && yarn run -T parcel watch src/index.html src/inject.js",
"dev": "yarn && yarn run -T parcel src/index.html src/inject.js"
"dev": "yarn && yarn run -T parcel src/index.html src/inject.js",
"prepublish": "yarn run -T rimraf dist && yarn --immutable && yarn run -T parcel build src/index.html src/inject.js"
},
"files": [
"dist"
Expand All @@ -17,7 +18,7 @@
"@types/react-dom": "^17.0.11"
},
"dependencies": {
"@botpress/webchat": "0.0.1",
"@botpress/webchat": "0.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/messaging-server",
"version": "0.1.23",
"version": "1.0.0",
"main": "index.ts",
"license": "AGPL-3.0",
"scripts": {
Expand Down
7 changes: 3 additions & 4 deletions packages/socket/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@botpress/messaging-socket",
"version": "0.0.3",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"license": "AGPL-3.0",
"scripts": {
"build": "yarn && yarn run -T tsc --build",
"watch": "yarn && yarn run -T tsc --build --watch",
"prepublish": "yarn --immutable && yarn run -T tsc --build && rimraf dist/.tsbuildinfo"
"prepublish": "yarn run -T rimraf dist && yarn --immutable && yarn run -T tsc --build && yarn run -T rimraf dist/.tsbuildinfo"
},
"files": [
"dist"
Expand All @@ -19,11 +19,10 @@
"@types/node": "^16.11.13",
"@types/uuid": "^8.3.4",
"lodash": "^4.17.21",
"rimraf": "^3.0.2",
"uuid": "^8.3.2"
},
"dependencies": {
"@botpress/messaging-base": "0.0.2",
"@botpress/messaging-base": "1.0.0",
"socket.io-client": "^4.4.1"
}
}
9 changes: 5 additions & 4 deletions packages/webchat/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "@botpress/webchat",
"version": "0.0.1",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.tsx",
"license": "AGPL-3.0",
"scripts": {
"build": "yarn && yarn run -T tsc --build",
"watch": "yarn && yarn run -T tsc --build --watch"
"watch": "yarn && yarn run -T tsc --build --watch",
"prepublish": "yarn run -T rimraf dist && yarn --immutable && yarn run -T tsc --build && yarn run -T rimraf dist/.tsbuildinfo"
},
"files": [
"dist"
Expand All @@ -23,8 +24,8 @@
},
"dependencies": {
"@blueprintjs/core": "^3.23.1",
"@botpress/messaging-components": "0.0.8",
"@botpress/messaging-socket": "0.0.3",
"@botpress/messaging-components": "0.1.0",
"@botpress/messaging-socket": "0.1.0",
"@formatjs/intl-pluralrules": "^4.1.6",
"@formatjs/intl-utils": "^3.8.4",
"@juggle/resize-observer": "^3.0.2",
Expand Down
23 changes: 9 additions & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2015,11 +2015,9 @@ __metadata:
languageName: node
linkType: hard

"@botpress/messaging-base@*, @botpress/messaging-base@0.0.2, @botpress/messaging-base@workspace:packages/base":
"@botpress/messaging-base@*, @botpress/messaging-base@1.0.0, @botpress/messaging-base@workspace:packages/base":
version: 0.0.0-use.local
resolution: "@botpress/messaging-base@workspace:packages/base"
dependencies:
rimraf: ^3.0.2
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -2079,19 +2077,18 @@ __metadata:
version: 0.0.0-use.local
resolution: "@botpress/messaging-client@workspace:packages/client"
dependencies:
"@botpress/messaging-base": 0.0.2
"@botpress/messaging-base": 1.0.0
"@types/express": ^4.17.13
"@types/jest": ^27.4.0
"@types/node": ^16.11.13
"@types/uuid": ^8.3.4
axios: ^0.21.4
joi: ^17.5.0
rimraf: ^3.0.2
uuid: ^8.3.2
languageName: unknown
linkType: soft

"@botpress/messaging-components@0.0.8, @botpress/messaging-components@workspace:packages/components":
"@botpress/messaging-components@0.1.0, @botpress/messaging-components@workspace:packages/components":
version: 0.0.0-use.local
resolution: "@botpress/messaging-components@workspace:packages/components"
dependencies:
Expand Down Expand Up @@ -2129,7 +2126,6 @@ __metadata:
react-slick: ^0.28.1
react-test-renderer: ^17.0.2
react-text-format: ^2.0.28
rimraf: ^3.0.2
snarkdown: ^2.0.0
peerDependencies:
html-truncate: ^1.2.2
Expand Down Expand Up @@ -2220,17 +2216,16 @@ __metadata:
languageName: unknown
linkType: soft

"@botpress/messaging-socket@*, @botpress/messaging-socket@0.0.3, @botpress/messaging-socket@workspace:packages/socket":
"@botpress/messaging-socket@*, @botpress/messaging-socket@0.1.0, @botpress/messaging-socket@workspace:packages/socket":
version: 0.0.0-use.local
resolution: "@botpress/messaging-socket@workspace:packages/socket"
dependencies:
"@botpress/messaging-base": 0.0.2
"@botpress/messaging-base": 1.0.0
"@types/jest": ^27.4.0
"@types/lodash": ^4.14.178
"@types/node": ^16.11.13
"@types/uuid": ^8.3.4
lodash: ^4.17.21
rimraf: ^3.0.2
socket.io-client: ^4.4.1
uuid: ^8.3.2
languageName: unknown
Expand Down Expand Up @@ -2296,7 +2291,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@botpress/webchat-inject@workspace:packages/inject"
dependencies:
"@botpress/webchat": 0.0.1
"@botpress/webchat": 0.1.0
"@parcel/config-default": ^2.2.0
"@parcel/transformer-typescript-tsc": ^2.2.0
"@types/react": ^17.0.38
Expand All @@ -2306,13 +2301,13 @@ __metadata:
languageName: unknown
linkType: soft

"@botpress/webchat@*, @botpress/webchat@0.0.1, @botpress/webchat@workspace:packages/webchat":
"@botpress/webchat@*, @botpress/webchat@0.1.0, @botpress/webchat@workspace:packages/webchat":
version: 0.0.0-use.local
resolution: "@botpress/webchat@workspace:packages/webchat"
dependencies:
"@blueprintjs/core": ^3.23.1
"@botpress/messaging-components": 0.0.8
"@botpress/messaging-socket": 0.0.3
"@botpress/messaging-components": 0.1.0
"@botpress/messaging-socket": 0.1.0
"@formatjs/intl-pluralrules": ^4.1.6
"@formatjs/intl-utils": ^3.8.4
"@juggle/resize-observer": ^3.0.2
Expand Down

0 comments on commit c381196

Please sign in to comment.