Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
avil13 committed Apr 27, 2024
1 parent 8d38f71 commit 0827059
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/act-master/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "act-master",
"version": "2.4.1",
"version": "2.5.0",
"author": "avil13",
"main": "dist/index.cjs",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/act-master/src/vue/__tests__/act-master.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ActMaster } from '..';
import { type ActMaster } from '../..';
import { beforeEach, describe, expect, it, vi } from 'vitest';
import { VueActMaster } from '..';

Expand Down
2 changes: 1 addition & 1 deletion packages/act-master/src/vue/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class VueActMaster {
// devtool
if (VueActMaster.actMaster) {
//@ts-ignore
if (process.env.NODE_ENV === 'development' || __VUE_PROD_DEVTOOLS__) {
if (process.env.NODE_ENV === 'development') {
addDevtools(app, VueActMaster.actMaster);
}
}
Expand Down

0 comments on commit 0827059

Please sign in to comment.