Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update packages/sol-compiler/src/compiler.ts | Fabio B | 2018-12-19 | 1 | -1/+2 |
| | | | Co-Authored-By: LogvinovLeon <logvinov.leon@gmail.com> | ||||
* | Run prettier | Leonid Logvinov | 2018-12-19 | 1 | -1/+3 |
| | |||||
* | Describe regexes | Leonid Logvinov | 2018-12-19 | 1 | -1/+4 |
| | |||||
* | Add a NOTE comment | Leonid Logvinov | 2018-12-19 | 1 | -0/+3 |
| | |||||
* | Move logWithTime to logUtils | Leonid Logvinov | 2018-12-19 | 1 | -5/+5 |
| | |||||
* | Update packages/sol-compiler/src/compiler.ts | Fabio B | 2018-12-19 | 1 | -1/+1 |
| | | | Co-Authored-By: LogvinovLeon <logvinov.leon@gmail.com> | ||||
* | Disable linter no a hanging promise with a comment | Leonid Logvinov | 2018-12-19 | 1 | -2/+3 |
| | |||||
* | Move logWithTime function to utils | Leonid Logvinov | 2018-12-19 | 1 | -10/+5 |
| | |||||
* | Add sol-compiler watch mode | Leonid Logvinov | 2018-12-19 | 1 | -0/+46 |
| | |||||
* | Refactor most of the sol-compiler methods into helper functions in utils and ↵ | Leonid Logvinov | 2018-12-19 | 1 | -185/+20 |
| | | | | make resolver pluggable into them | ||||
* | Implement prefer-template tslint rule | kao | 2018-12-08 | 1 | -1/+1 |
| | |||||
* | Update packages/sol-compiler/src/compiler.ts | Fabio B | 2018-12-03 | 1 | -1/+1 |
| | | | Co-Authored-By: LogvinovLeon <logvinov.leon@gmail.com> | ||||
* | Fix an issue when we tried to append base contracts path to absolute imports ↵ | Leonid Logvinov | 2018-12-03 | 1 | -1/+8 |
| | | | | (NPM) in sol-compiler | ||||
* | chore: change package org from 0xproject to 0x | Jacob Evans | 2018-10-18 | 1 | -3/+3 |
| | |||||
* | fix: comment need for sourceCodes pruning | F. Eugene Aumson | 2018-10-03 | 1 | -1/+5 |
| | |||||
* | fix: use original source ID's from compiler output | F. Eugene Aumson | 2018-10-03 | 1 | -13/+24 |
| | | | | | | | | | | | | | Previously, was generating fresh source ID's but per @LogvinovLeon 's comment (cited below) that will likely break existing source code mappings. Changed to use the original source code mapping ID's that were generated by the compiler https://app.asana.com/0/684263176955174/842516551768097/f https://github.com/0xProject/0x-monorepo/pull/1108 https://github.com/0xProject/0x-monorepo/pull/1108#pullrequestreview-161059063 | ||||
* | Fix some small bugs in compiler.ts | Alex Browne | 2018-10-03 | 1 | -3/+18 |
| | |||||
* | fix: persist artifacts with only relevant sources | F. Eugene Aumson | 2018-10-03 | 1 | -5/+52 |
| | | | | | https://github.com/0xProject/0x-monorepo/pull/1108 https://app.asana.com/0/684263176955174/842516551768097/f | ||||
* | feat: add sol-doc command-line interface | F. Eugene Aumson | 2018-09-22 | 1 | -6/+8 |
| | | | | | | | | modified sol-compiler to output progress/warning/error/etc messages to stderr rather than stdout, so that sol-doc can put its output (and nothing else) to stdout. for posterity, added sol-doc cli usage as npm scripts to package.json. | ||||
* | add named references for returned objects | F. Eugene Aumson | 2018-08-30 | 1 | -3/+6 |
| | |||||
* | re-word comment: 'construction' -> 'instantiation' | F. Eugene Aumson | 2018-08-30 | 1 | -1/+1 |
| | |||||
* | rename method _addHexPrefixes | F. Eugene Aumson | 2018-08-30 | 1 | -2/+2 |
| | |||||
* | add devdoc support to solc typings, and use it | F. Eugene Aumson | 2018-08-29 | 1 | -7/+4 |
| | |||||
* | add interface to return compiler output... | F. Eugene Aumson | 2018-08-29 | 1 | -11/+33 |
| | | | | ...rather than persisting it to the filesystem. | ||||
* | rename var `compiledData` to `compiledContract` | F. Eugene Aumson | 2018-08-29 | 1 | -13/+13 |
| | |||||
* | extract method _getContractNamesToCompile() | F. Eugene Aumson | 2018-08-29 | 1 | -4/+5 |
| | |||||
* | split method | F. Eugene Aumson | 2018-08-29 | 1 | -22/+29 |
| | |||||
* | Merge development branch | Fabio Berger | 2018-08-22 | 1 | -80/+155 |
|\ | |||||
| * | move doesFileExist to fsWrapper | F. Eugene Aumson | 2018-08-17 | 1 | -13/+1 |
| | | |||||
| * | change some *Sync to *Async | F. Eugene Aumson | 2018-08-17 | 1 | -4/+18 |
| | | |||||
| * | flatten out interface to verifyAndPersist* method | F. Eugene Aumson | 2018-08-17 | 1 | -6/+6 |
| | | |||||
| * | clarify iteration range | F. Eugene Aumson | 2018-08-17 | 1 | -1/+2 |
| | | |||||
| * | scrap comments in favor of self-documentation | F. Eugene Aumson | 2018-08-17 | 1 | -3/+2 |
| | | |||||
| * | declare contractData before adding to map | F. Eugene Aumson | 2018-08-17 | 1 | -2/+3 |
| | | |||||
| * | change `return Promise<void>` to `await...` | F. Eugene Aumson | 2018-08-17 | 1 | -1/+1 |
| | | |||||
| * | consolidate binPaths... ref's into fullSolcVersion | F. Eugene Aumson | 2018-08-17 | 1 | -2/+2 |
| | | |||||
| * | extract method _shouldCompile() | F. Eugene Aumson | 2018-08-16 | 1 | -13/+12 |
| | | |||||
| * | renamed variable `compiled` to `compilerOutput` | F. Eugene Aumson | 2018-08-16 | 1 | -6/+6 |
| | | |||||
| * | use `for...of _.keys` instead of `for...in` | F. Eugene Aumson | 2018-08-16 | 1 | -5/+1 |
| | | |||||
| * | raise error for unknown compiler version | F. Eugene Aumson | 2018-08-16 | 1 | -0/+3 |
| | | |||||
| * | comments | F. Eugene Aumson | 2018-08-16 | 1 | -0/+3 |
| | | |||||
| * | remedy missing *IfExists identifier suffix | F. Eugene Aumson | 2018-08-16 | 1 | -6/+3 |
| | | |||||
| * | extract interfaces for re-used complex data types | F. Eugene Aumson | 2018-08-16 | 1 | -23/+28 |
| | | |||||
| * | move getSolcAsync to static private method | F. Eugene Aumson | 2018-08-16 | 1 | -23/+23 |
| | | |||||
| * | rename variable inputsByVersion to versionToInputs | F. Eugene Aumson | 2018-08-16 | 1 | -8/+8 |
| | | |||||
| * | move getSolcAsync to static private method | F. Eugene Aumson | 2018-08-16 | 1 | -25/+24 |
| | | |||||
| * | simplify method interface | F. Eugene Aumson | 2018-08-15 | 1 | -8/+12 |
| | | |||||
| * | simplify method parameter | F. Eugene Aumson | 2018-08-15 | 1 | -6/+4 |
| | | |||||
| * | corrected whitespace (no functional changes) | F. Eugene Aumson | 2018-08-15 | 1 | -39/+41 |
| | | |||||
| * | compile contracts in batches | F. Eugene Aumson | 2018-08-15 | 1 | -31/+70 |
| | | | | | | | | one batch per compiler version needed. | ||||
| * | extract method _verifyAndPersistCompilationAsync() | F. Eugene Aumson | 2018-08-15 | 1 | -1/+18 |
| | | |||||
| * | extract method _compile() | F. Eugene Aumson | 2018-08-15 | 1 | -24/+27 |
| | | |||||
| * | extract function getSolcAsync() | F. Eugene Aumson | 2018-08-15 | 1 | -18/+25 |
| | | |||||
* | | Move types from sol-compiler to types so they can be used in other places ↵ | Fabio Berger | 2018-08-22 | 1 | -1/+1 |
| | | | | | | | | without requiring sol-compiler as a dep | ||||
* | | Add missing compiler comments | Fabio Berger | 2018-08-04 | 1 | -0/+1 |
|/ | |||||
* | Fix tslint issues | Leonid Logvinov | 2018-07-17 | 1 | -7/+7 |
| | |||||
* | -fetch'; | Fabio Berger | 2018-07-13 | 1 | -3/+2 |
| | |||||
* | Try enabling no-unused-variable... | fragosti | 2018-06-05 | 1 | -15/+2 |
| | |||||
* | Fix linter errors | Leonid Logvinov | 2018-06-01 | 1 | -1/+1 |
| | |||||
* | Introduce ethereum-types package | Leonid Logvinov | 2018-06-01 | 1 | -1/+1 |
| | |||||
* | Make opts param optional in Compiler | Leonid Logvinov | 2018-05-30 | 1 | -6/+7 |
| | |||||
* | Add CHANGELOG entry | Leonid Logvinov | 2018-05-30 | 1 | -1/+0 |
| | |||||
* | Add schema assertions on public methods of @0xproject/sol-compiler | Leonid Logvinov | 2018-05-30 | 1 | -0/+5 |
| | |||||
* | Add solcVersion to CompilerOpts | Leonid Logvinov | 2018-05-23 | 1 | -4/+9 |
| | |||||
* | Fix TSLint rules | Fabio Berger | 2018-05-16 | 1 | -1/+2 |
| | |||||
* | Rename deployer to sol-compiler | Leonid Logvinov | 2018-05-10 | 1 | -0/+276 |