Skip to content

Commit d97d640

Browse files
committed
Lint fix
1 parent 05bd48d commit d97d640

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

browser/cli/src/utils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ export const getExtension = () => {
1515
if (!tsconfig) return '.js';
1616
const moduleResolution = tsconfig.config.compilerOptions?.moduleResolution;
1717
if (!moduleResolution) return '.js';
18+
1819
return moduleResolution === 'Bundler' ? '' : '.js';
1920
} catch (error) {
2021
console.error('Error getting extension:', error);
22+
2123
return '.js';
2224
}
2325
};

cli/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,7 @@ $ atomic install https://atomicdata.dev/ontologies/meetings
109109
# when no URL is given, use the Ontola repo's ontologies
110110
$ atomic install meetings
111111
``` -->
112+
113+
## Development / contributing
114+
115+
If you want to run the commands from source, first run `pnpm link --global` and then exec the binary with `pnpm exec ad-generate`.

0 commit comments

Comments
 (0)