Skip to content

Commit 4ac77c2

Browse files
authored
Merge branch 'master' into contract-verification-i18n
2 parents bdb44e0 + 496e315 commit 4ac77c2

File tree

33 files changed

+95
-56
lines changed

33 files changed

+95
-56
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
2727
- OS: [e.g. Windows, Linux or MacOS]
28-
- Browser [e.g. chrome, firefox]
29-
- Version [e.g. 22]
28+
- Browser: [e.g. chrome, firefox]
29+
- Version: [e.g. 22]
3030

3131
**Additional context**
3232
Add any other context about the problem here.

apps/circuit-compiler/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = composePlugins(withNx(), (config) => {
5555
})
5656
)
5757

58-
// souce-map loader
58+
// source-map loader
5959
config.module.rules.push({
6060
test: /\.js$/,
6161
use: ["source-map-loader"],

apps/contract-verification/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = composePlugins(withNx(), (config) => {
5656
})
5757
)
5858

59-
// souce-map loader
59+
// source-map loader
6060
config.module.rules.push({
6161
test: /\.js$/,
6262
use: ['source-map-loader'],

apps/doc-gen/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = composePlugins(withNx(), withReact(), config => {
4040
new webpack.DefinePlugin({}),
4141
)
4242

43-
// souce-map loader
43+
// source-map loader
4444
config.module.rules.push({
4545
test: /\.js$/,
4646
use: ['source-map-loader'],

apps/learneth/src/redux/models/remixide.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ const Model: ModelType = {
3333
},
3434
})
3535

36-
yield remixClient.onload()
36+
yield remixClient.onload(() => {
37+
remixClient.call('manager', 'activatePlugin', 'solidityUnitTesting')
38+
})
3739

3840
toast.dismiss()
3941

apps/learneth/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module.exports = composePlugins(withNx(), (config) => {
5454
})
5555
)
5656

57-
// souce-map loader
57+
// source-map loader
5858
config.module.rules.push({
5959
test: /\.js$/,
6060
use: ['source-map-loader'],

apps/noir-compiler/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = composePlugins(withNx(), (config) => {
5555
})
5656
)
5757

58-
// souce-map loader
58+
// source-map loader
5959
config.module.rules.push({
6060
test: /\.js$/,
6161
use: ["source-map-loader"],

apps/quick-dapp/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module.exports = composePlugins(withNx(), (config) => {
5454
})
5555
)
5656

57-
// souce-map loader
57+
// source-map loader
5858
config.module.rules.push({
5959
test: /\.js$/,
6060
use: ['source-map-loader'],

apps/remix-dapp/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module.exports = composePlugins(withNx(), (config) => {
7272
})
7373
)
7474

75-
// souce-map loader
75+
// source-map loader
7676
config.module.rules.push({
7777
test: /\.js$/,
7878
use: ['source-map-loader'],

apps/remix-ide-e2e/src/local-plugin/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = composePlugins(withNx(), (config) => {
88
// add public path
99
config.output.publicPath = '/'
1010

11-
// souce-map loader
11+
// source-map loader
1212
config.module.rules.push({
1313
test: /\.js$/,
1414
use: ["source-map-loader"],

0 commit comments

Comments
 (0)