-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor!: nest ctype in ICTypeDetails (#766) * refactor: change ctype parameter name to cType where possible * feat: re-export imported types from @kiltprotocol/types (#762) * feat: deprecate CType meta schema draft-01 (#778) * fix: default to log level warn in non-production environments * test: skip expensive delegation node tests * test: esm variant of integration tests (#779) * test: make tests work with new kilt node cli (#796) * chore: update metadata to 1.11.0 * chore(deps): update cbor-web to v9 * chore(deps-dev): bump webpack from 5.70.0 to 5.76.0 (#771) * chore(deps-dev): bump semver-regex from 3.1.3 to 3.1.4 (#775) * chore(deps-dev): bump typedoc to resolve dependency conflict * ci: make latest-develop tests optional and latest mandatory Co-authored-by: Gerawork Aynekulu <[email protected]> Co-authored-by: Raphael Flechtner <[email protected]>
- Loading branch information
1 parent
d0445c3
commit cb0b8e1
Showing
119 changed files
with
2,902 additions
and
3,325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,23 +11,24 @@ | |
"build": "yarn workspaces foreach -p -t --exclude '{root-workspace}' run build", | ||
"build:docs": "typedoc --theme default --out docs/api --tsconfig tsconfig.docs.json && touch docs/.nojekyll", | ||
"bundle": "yarn workspace @kiltprotocol/sdk-js run bundle", | ||
"clean": "rimraf tests/dist && yarn workspaces foreach -p --exclude '{root-workspace}' run clean", | ||
"clean": "rimraf tests/bundle/dist && rimraf tests/integration/dist && yarn workspaces foreach -p --exclude '{root-workspace}' run clean", | ||
"clean:docs": "rimraf docs/api", | ||
"prepublish": "yarn workspaces foreach -p --no-private exec cp -f ../../LICENSE .", | ||
"publish": "yarn workspaces foreach -pt --no-private npm publish", | ||
"lint": "eslint packages --format=codeframe", | ||
"lint": "eslint packages tests --format=codeframe", | ||
"lint:fix": "yarn lint --fix", | ||
"set:version": "npm version --no-git-tag-version --no-workspaces-update --workspaces --include-workspace-root", | ||
"style": "prettier -l packages", | ||
"style:fix": "yarn style --write", | ||
"test": "jest --coverage --group=unit", | ||
"test:breaking": "jest --group=breaking", | ||
"test": "jest --coverage --selectProjects=unit", | ||
"test:breaking": "jest --selectProjects=breaking", | ||
"test:ci": "yarn test --ci --forceExit", | ||
"test:integration": "jest --group=integration -w 3 --testTimeout=30000", | ||
"test:integration:ci": "jest --group=integration -b -w 3 --testTimeout=60000", | ||
"test:integration": "jest -c tests/integration/jest.config.integration.js", | ||
"build:esm-tests": "rimraf tests/integration/dist && tsc -p tests/integration/tsconfig.esm.json && echo '{\"type\":\"module\"}' > tests/integration/dist/package.json", | ||
"test:integration:esm": "yarn build:esm-tests && yarn node --experimental-vm-modules $(yarn bin jest) -c tests/integration/jest.config.integration.esm.js", | ||
"test:integration:latest-develop": "TESTCONTAINERS_NODE_IMG=kiltprotocol/mashnet-node:latest-develop yarn test:integration", | ||
"test:watch": "yarn test --watch", | ||
"test:bundle": "tsc -p tests/tsconfig.json && yarn ./tests playwright test --config playwright.config.ts", | ||
"test:bundle": "tsc -p tests/bundle/tsconfig.json && yarn ./tests/bundle playwright test --config playwright.config.ts", | ||
"test:ci:bundle": "yarn test:ci:bundle:preparation && yarn test:bundle", | ||
"test:ci:bundle:preparation": "yarn playwright install-deps && yarn playwright install chromium" | ||
}, | ||
|
@@ -47,7 +48,7 @@ | |
"@commitlint/cli": "^9.0.1", | ||
"@commitlint/config-conventional": "^9.0.1", | ||
"@playwright/test": "^1.21.1", | ||
"@types/jest": "^27.4.0", | ||
"@types/jest": "^29.5.3", | ||
"@typescript-eslint/eslint-plugin": "^5.7.0", | ||
"@typescript-eslint/parser": "^5.7.0", | ||
"eslint": "^7.32.0", | ||
|
@@ -58,18 +59,15 @@ | |
"eslint-plugin-license-header": "^0.2.1", | ||
"eslint-plugin-prettier": "^3.4.1", | ||
"husky": "^4.2.5", | ||
"jest": "^27.4.7", | ||
"jest-docblock": "^27.4.0", | ||
"jest-runner": "^27.4.6", | ||
"jest-runner-groups": "^2.1.0", | ||
"jest": "^29.6.1", | ||
"prettier": "^2.4.1", | ||
"rimraf": "^3.0.2", | ||
"testcontainers": "^9.0.0", | ||
"ts-jest": "^27.1.2", | ||
"ts-jest-resolver": "^2.0.0", | ||
"typedoc": "^0.22.15", | ||
"ts-jest": "^29.1.1", | ||
"ts-jest-resolver": "^2.0.1", | ||
"typedoc": "^0.23.0", | ||
"typescript": "^4.8.3" | ||
}, | ||
"version": "0.33.1", | ||
"version": "0.34.0", | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.