Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolving package dependency #957 #1091

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .commitlintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"@commitlint/config-conventional"

],
"rules": {
"body-max-line-length": [
Expand Down
12 changes: 5 additions & 7 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",



[
"@semantic-release/git",

{
"assets": [
"package.json",
Expand All @@ -25,8 +24,7 @@
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
],
"repositoryUrl": "https://github.com/starknet-io/starknet.js"
}
5 changes: 4 additions & 1 deletion __tests__/config/jest.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@
* ref: order of execution jestGlobalSetup.ts -> jest.setup.ts -> fixtures.ts
*/



import 'isomorphic-fetch';
import jest

/* eslint-disable no-console */
import { register } from 'fetch-intercept';

const util = require('util');

jest.setTimeout(50 * 60 * 1000);
// jest.setTimeout(50 * 60 * 1000);

const combiner: object[] = [];

Expand Down
Loading
Loading