Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add support for multiple configurations in package.json #701

Merged
merged 17 commits into from
Mar 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## v5.2.1

Bugfix: fix publish command on windows [#695](https://github.com/idyll-lang/idyll/pull/695)

## v5.2.0
Expand All @@ -8,30 +9,34 @@ Add experimental [project create API](https://github.com/idyll-lang/idyll/pull/6
## v5.1.0

Features:

- Adds `insertFullWidth` option to markup serializer ([#686](https://github.com/idyll-lang/idyll/pull/686))
- Adds `inlineAuthorView` option to `idyll-document` ([#681](https://github.com/idyll-lang/idyll/pull/681))

Bugfixes:
- General improvements to markup serialization ([#685](https://github.com/idyll-lang/idyll/pull/685), [#684](https://github.com/idyll-lang/idyll/pull/684), [#676](https://github.com/idyll-lang/idyll/pull/676))

- General improvements to markup serialization ([#685](https://github.com/idyll-lang/idyll/pull/685), [#684](https://github.com/idyll-lang/idyll/pull/684), [#676](https://github.com/idyll-lang/idyll/pull/676))

### v5.0.1

Bugfixes:
- Improves output of `AST.toMarkup(ast)` function so that extra whitespace is not inserted on repeated calls.

- Improves output of `AST.toMarkup(ast)` function so that extra whitespace is not inserted on repeated calls.

# v5.0

Features:

- Adds `fullWidthSteps` option to the scroller, to make it easier for scroller components steps to take on wider designs

Bugfixes:
- Component resolver is initialized at the start of compile process and when a compiler postprocessor plugin creates a new component in components directory, it won't be available till the next build and the current build fails with component not found error. (See: https://github.com/idyll-lang/idyll/pull/610)

- Component resolver is initialized at the start of compile process and when a compiler postprocessor plugin creates a new component in components directory, it won't be available till the next build and the current build fails with component not found error. (See: https://github.com/idyll-lang/idyll/pull/610)

Breaking changes:

- Update header component default behavior to use styles (background color and text color) provided by themes
- Fix the `package.json` options logic so any idyll option can be provided via package.json and
- Fix the `package.json` options logic so any idyll option can be provided via package.json and

## v4.10

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"devDependencies": {
"husky": "^1.1.3",
"lerna": "^2.0.0",
"lerna": "^2.11.0",
"prettier": "1.15.1",
"pretty-quick": "^1.8.0"
},
Expand Down
1 change: 1 addition & 0 deletions packages/idyll-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"bs-pretty-message": "^1.0.8",
"chalk": "^2.4.1",
"change-case": "^3.0.1",
"command-line-args": "^5.1.1",
rogerfitz marked this conversation as resolved.
Show resolved Hide resolved
"cross-spawn": "^6.0.5",
"csv-parse": "^4.8.2",
"debug": "^3.1.0",
Expand Down
Loading