Skip to content

Commit 21c956d

Browse files
feat(overmind-vue): add reaction
1 parent 8310e47 commit 21c956d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/node_modules/overmind-devtools-vscode/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Overmind Devtools VSCode",
44
"description": "Devtools for Overmind",
55
"publisher": "christianalfoni",
6-
"version": "0.0.18",
6+
"version": "0.0.19",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/cerebral/overmind.git"
@@ -59,7 +59,8 @@
5959
"compile": "webpack --mode none",
6060
"watch": "webpack --mode none --watch",
6161
"postinstall": "node ./node_modules/vscode/bin/install",
62-
"build": "rimraf devtoolsDist && cp -R ../overmind-devtools-client/dist devtoolsDist"
62+
"build": "rimraf devtoolsDist && cp -R ../overmind-devtools-client/dist devtoolsDist",
63+
"distribute": "npm run build && vsce publish -p $TOKEN"
6364
},
6465
"devDependencies": {
6566
"@types/node": "^10.12.21",

packages/node_modules/overmind-vue/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ function createMixin(overmind, propsCallback) {
1717
actions: overmind.actions,
1818
effects: overmind.effects,
1919
addMutationListener: overmind.addMutationListener,
20+
reaction: overmind.reaction,
2021
}
2122
if (propsCallback) {
2223
Object.assign(
@@ -44,6 +45,7 @@ function createMixin(overmind, propsCallback) {
4445
actions: overmind.actions,
4546
effects: overmind.effects,
4647
addMutationListener: overmind.addMutationListener,
48+
reaction: overmind.reaction,
4749
}
4850

4951
if (propsCallback) {

0 commit comments

Comments
 (0)