Skip to content

Commit

Permalink
Removes download functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
robschleusner committed Nov 21, 2023
1 parent 5fa3d44 commit 5d46e89
Show file tree
Hide file tree
Showing 20 changed files with 366 additions and 212 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/dist

# Logs
logs
*.log
Expand Down
2 changes: 2 additions & 0 deletions dist/src/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import "./type-extensions";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/src/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

71 changes: 71 additions & 0 deletions dist/src/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/src/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions dist/src/type-extensions.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import "hardhat/types/runtime";
import "hardhat/types/config";
declare module "hardhat/types/config" {
interface HardhatUserConfig {
solidityx: {
[compilerPath: string]: string;
};
}
interface HardhatConfig {
solidityx: {
[compilerPath: string]: string;
};
}
}
//# sourceMappingURL=type-extensions.d.ts.map
1 change: 1 addition & 0 deletions dist/src/type-extensions.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions dist/src/type-extensions.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/src/type-extensions.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { HardhatUserConfig } from "hardhat/types";
import "../../../src/index";
declare const config: HardhatUserConfig;
export default config;
//# sourceMappingURL=hardhat.config.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions dist/test/fixture-projects/hardhat-project/hardhat.config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dist/test/helpers.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { HardhatRuntimeEnvironment } from "hardhat/types";
declare module "mocha" {
interface Context {
hre: HardhatRuntimeEnvironment;
}
}
export declare function useEnvironment(fixtureProjectName: string): void;
//# sourceMappingURL=helpers.d.ts.map
1 change: 1 addition & 0 deletions dist/test/helpers.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions dist/test/helpers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/test/helpers.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

1 comment on commit 5d46e89

@saiaman
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Be carefull, this strategy means that every push is after npm run build... and can lead to dis-synchronisation between ts and js.

Please sign in to comment.