Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 14, 2024
1 parent f1a1cee commit 2e649d0
Show file tree
Hide file tree
Showing 4 changed files with 1,304 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/typegen/src/generate/lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import * as defaultDefinitions from '@polkadot/types/interfaces/definitions';
import staticKusama from '@polkadot/types-support/metadata/static-kusama';
import staticPolkadot from '@polkadot/types-support/metadata/static-polkadot';
import staticSubstrate from '@polkadot/types-support/metadata/static-substrate';
import staticCollectives from '@polkadot/types-support/metadata/static-collectives';
import { isString, stringify } from '@polkadot/util';

import { createImports, exportInterface, initMeta, readTemplate, writeFile } from '../util/index.js';
Expand Down Expand Up @@ -271,7 +272,9 @@ export function generateDefaultLookup (destDir = 'packages/types-augment/src/loo
: [
['substrate', staticSubstrate],
['polkadot', staticPolkadot],
['kusama', staticKusama]
['kusama', staticKusama],
['collectives', staticCollectives],

Check failure on line 276 in packages/typegen/src/generate/lookup.ts

View workflow job for this annotation

GitHub Actions / pr (lint)

Unexpected trailing comma

]
);
}
Loading

0 comments on commit 2e649d0

Please sign in to comment.