Andrew (Paradi) Alexander

Results 123 issues of Andrew (Paradi) Alexander

```Typescript ERROR in Entry module not found: Error: Can't resolve './src' in '/Users/adrw/Development/misk-web/examples/tabs/palette-exemplar' ``` Have better handling for this error which shows up when build files haven't been generated. Potentially...

bug
infrastructure
palette
@misk/cli

`simpleSelect(props.simpleForm, FormTag, "data")` currently just returns a flat array of the data fields in `FormTag*` matching tags. Need a way to return something like below: ```Typescript { "FormTag::Input1": formTagInput1Data, "FormTag::Input2":...

palette
@misk/simpleredux

Currently ``` // Generated by @misk/cli. ``` More descriptively for debug purposes would be ``` // Build file v0.1.3 generated by @misk/cli v0.1.4-2. ``` - build file version: pulled from...

enhancement
@misk/cli

Add following task to all `package.json` and to `package` template in `@misk/cli` ``` "prepare": "npm run-script ci-build", ``` Follow up to #145

bug
infrastructure
@misk/cli

- No more errors like [this](https://travis-ci.com/square/misk-web/builds/100105979): ``` ERROR in /web/@misk/common/tsconfig.json [tsl] MESSAGE TS6096: File './node_modules/@misk/dev/tsconfig.base' does not exist. ```

bug
infrastructure
@misk/cli

- Reduces the amount of data being stored in the CLI code - Leaves option for manual build file configuration still pulling from the templates that live in `@misk/dev`, `@misk/tslint`,...

@misk/dev
@misk/tslint
@misk/cli

- `export const fnName = async () => {}` function declarations - Remove `chalk`, `commander`, `node-emoji` libraries - Use `winston` logger

@misk/cli

Winston Export a default logger creator function from `@misk/dev` or `@misk/core`. - https://thisdavej.com/using-winston-a-versatile-logging-library-for-node-js/ - https://github.com/winstonjs/winston ``` export const logger = winston.createLogger({ level: "debug", format: combine( colorize(), timestamp(), label({ label: "jheadx"...

infrastructure
@misk/common