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 = () => {
15
15
if ( ! tsconfig ) return '.js' ;
16
16
const moduleResolution = tsconfig . config . compilerOptions ?. moduleResolution ;
17
17
if ( ! moduleResolution ) return '.js' ;
18
+
18
19
return moduleResolution === 'Bundler' ? '' : '.js' ;
19
20
} catch ( error ) {
20
21
console . error ( 'Error getting extension:' , error ) ;
22
+
21
23
return '.js' ;
22
24
}
23
25
} ;
Original file line number Diff line number Diff line change @@ -109,3 +109,7 @@ $ atomic install https://atomicdata.dev/ontologies/meetings
109
109
# when no URL is given, use the Ontola repo's ontologies
110
110
$ atomic install meetings
111
111
``` -->
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