Skip to content

Commit

Permalink
version 1.0.0-alpha12
Browse files Browse the repository at this point in the history
  • Loading branch information
TomaszPilch committed Dec 10, 2020
1 parent 60feba5 commit 35a3f3c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bheui/components",
"version": "1.0.0-alpha11",
"version": "1.0.0-alpha12",
"description": "Components fo BHE be UI",
"main": "dist",
"scripts": {
Expand Down
15 changes: 15 additions & 0 deletions scripts/prelink.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { ExecException } from 'child_process'
const { exec } = require('child_process')

const runCommand = (cmd: string) => {
exec(cmd, (e: ExecException, stdout: string, stderr: string) => {
console.log(e)
console.log(stdout)
console.log(stderr)
})
}

runCommand('yarn link react')
runCommand('yarn link react-redux')
runCommand('yarn link next')
runCommand('yarn link')
1 change: 1 addition & 0 deletions src/epics/SaveDataEpic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const SaveDataEpic = (api: ApiEndpointsType, selfApi: ApiLoginEndpointsType) =>
actions.push(EditActions.toBase64(action.data, files[0].data))
}
}
return actions
}
throw response
}),
Expand Down

0 comments on commit 35a3f3c

Please sign in to comment.