Skip to content

Commit 2874682

Browse files
committed
Merge in develop branch
2 parents cdcd0b9 + 27d575a commit 2874682

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+3522
-2696
lines changed

packages/artifactor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "MIT",
66
"author": "Tim Coulter",
77
"repository": "https://github.com/trufflesuite/truffle/tree/master/packages/artifactor",
8-
"version": "4.0.33",
8+
"version": "4.0.35",
99
"main": "dist/index.js",
1010
"scripts": {
1111
"build": "tsc",
@@ -18,7 +18,7 @@
1818
"lodash": "^4.17.13"
1919
},
2020
"devDependencies": {
21-
"@truffle/contract": "^4.0.34",
21+
"@truffle/contract": "^4.0.36",
2222
"@types/fs-extra": "^8.0.0",
2323
"@types/node": "^12.6.2",
2424
"chai": "4.2.0",

packages/box/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"author": "g. nicholas d'andrea <gnidan@trufflesuite.com>",
66
"repository": "https://github.com/trufflesuite/truffle/tree/master/packages/box",
7-
"version": "1.0.39",
7+
"version": "1.0.42",
88
"main": "dist/box.js",
99
"scripts": {
1010
"build": "tsc",
@@ -13,7 +13,7 @@
1313
},
1414
"types": "./typings/index.d.ts",
1515
"dependencies": {
16-
"@truffle/config": "^1.2.0",
16+
"@truffle/config": "^1.2.2",
1717
"fs-extra": "6.0.1",
1818
"github-download": "^0.5.0",
1919
"inquirer": "^7.0.0",
@@ -25,7 +25,7 @@
2525
},
2626
"devDependencies": {
2727
"@types/fs-extra": "^8.0.0",
28-
"@types/inquirer": "^6.0.3",
28+
"@types/inquirer": "6.0.3",
2929
"@types/request-promise-native": "^1.0.16",
3030
"@types/tmp": "^0.1.0",
3131
"mocha": "5.2.0",

packages/code-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"author": "",
66
"repository": "https://github.com/trufflesuite/truffle/tree/master/packages/code-utils",
7-
"version": "1.2.8",
7+
"version": "1.2.9",
88
"main": "dist/index.js",
99
"scripts": {
1010
"build": "tsc",

packages/code-utils/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"typeRoots": [
2020
"./typings",
2121
"node_modules/@types",
22-
"../../**/node_modules/@types/mocha",
23-
"../../**/node_modules/@types/node"
22+
"../../node_modules/@types/mocha",
23+
"../../node_modules/@types/node"
2424
]
2525
},
2626
"include": [

packages/compile-solidity/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@truffle/compile-solidity",
33
"description": "Compiler helper and artifact manager for Solidity files",
4-
"version": "4.2.6",
4+
"version": "4.2.8",
55
"main": "index.js",
66
"dependencies": {
7-
"@truffle/config": "^1.2.0",
7+
"@truffle/config": "^1.2.2",
88
"@truffle/contract-sources": "^0.1.6",
99
"@truffle/error": "^0.0.7",
1010
"@truffle/expect": "^0.0.11",

packages/compile-solidity/run.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ function processContracts({
331331
originalSourcePaths,
332332
solcVersion
333333
}) {
334+
if (!compilerOutput.contracts) return [];
334335
return (
335336
Object.entries(compilerOutput.contracts)
336337
// map to [[{ source, contractName, contract }]]

packages/compile-vyper/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
"license": "MIT",
55
"author": "Evgeniy Filatov <evgeniyfilatov@gmail.com>",
66
"repository": "https://github.com/trufflesuite/truffle/tree/master/packages/compile-vyper",
7-
"version": "1.0.30",
7+
"version": "1.0.32",
88
"main": "index.js",
99
"scripts": {
1010
"test": "mocha"
1111
},
1212
"dependencies": {
13-
"@truffle/compile-solidity": "^4.2.6",
13+
"@truffle/compile-solidity": "^4.2.8",
1414
"async": "2.6.1",
1515
"colors": "^1.1.2",
1616
"eslint": "^5.5.0",
1717
"minimatch": "^3.0.4"
1818
},
1919
"devDependencies": {
20-
"@truffle/config": "^1.2.0",
20+
"@truffle/config": "^1.2.2",
2121
"mocha": "5.2.0"
2222
},
2323
"keywords": [

packages/config/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
yarn.lock
33
package-lock.json
4+
dist

packages/config/index.js

Lines changed: 0 additions & 183 deletions
This file was deleted.

packages/config/package.json

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
22
"name": "@truffle/config",
3-
"version": "1.2.0",
3+
"version": "1.2.2",
44
"description": "Utility for interacting with truffle-config.js files",
5-
"main": "index.js",
6-
"typings": "./typings/index.d.ts",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
77
"scripts": {
8-
"test": "mocha"
8+
"build": "tsc",
9+
"prepare": "yarn build",
10+
"test": "yarn build && mocha --exit -r ts-node/register test/**/*.test.ts"
911
},
1012
"repository": "https://github.com/trufflesuite/truffle/tree/master/packages/config",
1113
"keywords": [
@@ -19,18 +21,26 @@
1921
"url": "https://github.com/trufflesuite/truffle/issues"
2022
},
2123
"homepage": "https://github.com/trufflesuite/truffle/tree/master/packages/config#readme",
24+
"devDependencies": {
25+
"@types/configstore": "^4.0.0",
26+
"@types/find-up": "^2.1.0",
27+
"@types/node": "^12.7.7",
28+
"@types/sinon": "^7.0.13",
29+
"mocha": "6.2.0",
30+
"sinon": "^7.5.0",
31+
"ts-node": "^8.4.1",
32+
"typescript": "^3.6.3"
33+
},
2234
"dependencies": {
2335
"@truffle/error": "^0.0.7",
2436
"@truffle/provider": "^0.1.18",
2537
"configstore": "^4.0.0",
2638
"find-up": "^2.1.0",
2739
"lodash": "^4.17.13",
40+
"module": "^1.2.5",
2841
"original-require": "1.0.1"
2942
},
3043
"publishConfig": {
3144
"access": "public"
32-
},
33-
"devDependencies": {
34-
"mocha": "5.2.0"
3545
}
3646
}

0 commit comments

Comments
 (0)