File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff 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} ;
Original file line number Diff line number Diff 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 ` .
You can’t perform that action at this time.
0 commit comments