git.delta.rocks / unique-network / refs/commits / 12f45baa529e

difftreelog

Merge pull request #240 from UniqueNetwork/feature/types-repo

kozyrevdev2021-12-02parents: #767e0d8 #26aa849.patch.diff
in: master

2 files changed

modifiedtests/.eslintrc.jsondiffbeforeafterboth
--- a/tests/.eslintrc.json
+++ b/tests/.eslintrc.json
@@ -64,6 +64,7 @@
                 "destructuring": "all"
             }
         ],
+        "@typescript-eslint/ban-ts-comment": "off",
         "object-curly-spacing": "warn",
         "arrow-spacing": "warn",
         "array-bracket-spacing": "warn",
addedtests/update_types.shdiffbeforeafterboth
after · tests/update_types.sh
1#!/usr/bin/env sh23yarn polkadot-types45cd ../..6if [ ! -f unique-types-js ]; then7	git clone git@github.com:UniqueNetwork/unique-types-js.git8fi910rsync -ar --delete unique-chain/tests/src/interfaces/ unique-types-js/src/interfaces11for file in unique-types-js/src/interfaces/augment-*; do12	sed -i '1s;^;//@ts-nocheck\n;' $file13done1415cd unique-types-js16git add src/interfaces/17git commit -m "chore: regenerate types"18cd ../unique-chain/tests