Skip to content

Commit

Permalink
fix(hmr): reexport LifecycleFlags from runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
bigopon committed May 5, 2022
1 parent 3028b40 commit 0561f22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages-cjs/plugin-conventions/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {
node: true,
},
rules: {
'import/no-nodejs-modules': 'off'
'import/no-nodejs-modules': 'off',
'@typescriot-eslint/strict-boolean-expression': 'off'
}
};
4 changes: 4 additions & 0 deletions packages/runtime-html/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="../../global.d.ts" />
export {
// only exception for now for hmr, remove soon
LifecycleFlags,
} from '@aurelia/runtime';
export {
bindable,
Bindable,
Expand Down

0 comments on commit 0561f22

Please sign in to comment.