dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
alm -o .
run Chrome rather then Edge on Windows 10.? I'd rather not change my default browser, but Chrome seems to run alm better in the zoomed-in mode I need to read comfortably.
can I run my script directly in ALM and see the console output?
Not quite. You can however run a ts
->js
conversion and see the output in the dev tools console. with Ctrl|⌘ + M
. Covered here : https://basarat.gitbooks.io/alm/content/features/build.html :rose:
Is there a way I can make alm -o . run Chrome rather then Edge on Windows 10.? I'd rather not change my default browser,
Sadly you have to. open chrome url
didn't work reliably on all OSSes and would crash silently if user didn't have chrome, so I just send open url
to all OSSes and the OS load the default browser : https://github.com/alm-tools/alm/blob/f3c89d0a69fbb0e62e203b5de7d55ea8e006bceb/src/server.ts#L134-L136
const user = observable({
userName : ""
});
setTimeout(() => {
user.userName = "Jack"
}, 3000);
@observer
class SomeComp extends React.Component<any, any> {
render() {
return <div>
{user.userName}
</div>
}
}
.editorconfig
before writing to disk. But keeping the in memory version of the contents unchanged
.js
for a .ts
file :rose:
npm run alm
: ERROR in ./~/source-map-support/source-map-support.jsimport * as monaco from 'monaco-editor'