Skip to content

Commit f0ebfe2

Browse files
committed
Build fixes?
1 parent 322ba40 commit f0ebfe2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"lint": "eslint \"src/**/*.{ts,tsx}\"",
2222
"test": "jest --silent",
2323
"clean": "rimraf pkg/**",
24-
"build": "npm run clean && pika build",
24+
"build": "npm run ts-check && npm run lint && npm run clean && pika build",
2525
"ts-check": "tsc --noEmit",
2626
"version": "npm run test && npm run lint && npm run build"
2727
},

src/utils/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { BaseProps } from '../typings/BaseProps';
2+
import { ReactComponentElement } from 'react';
23

34
const __DEV__ = process.env.NODE_ENV === 'development' || process.env.NODE_ENV === 'test';
45
const alreadyWarned: { [key: string]: Date } = {};

0 commit comments

Comments
 (0)