Skip to content

Commit

Permalink
chore(release): 2.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [2.0.0](v1.1.0...v2.0.0) (2022-09-08)

### Features

* streamline api ([a807eda](a807eda))

### BREAKING CHANGES

* rename `baka.render` to `baka.compile`

```js
// old
baka.render( options: BakaOptions );

// new
baka.compile( file: string, options: CompileOptions );
```
* change `baka.build` signature

```js
// old
baka.build( options: BakaOptions );

// new
baka.compile( file: string, outFile: string, options: BuildOptions );
```
* remove baka lite
  • Loading branch information
semantic-release-bot committed Sep 8, 2022
1 parent c4eba6a commit 8616d5a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# [2.0.0](https://github.com/joneff/baka/compare/v1.1.0...v2.0.0) (2022-09-08)


### Features

* streamline api ([a807eda](https://github.com/joneff/baka/commit/a807edacfbfe9d25cc5ee619b561953c988c60a6))


### BREAKING CHANGES

* rename `baka.render` to `baka.compile`

```js
// old
baka.render( options: BakaOptions );

// new
baka.compile( file: string, options: CompileOptions );
```
* change `baka.build` signature

```js
// old
baka.build( options: BakaOptions );

// new
baka.compile( file: string, outFile: string, options: BuildOptions );
```
* remove baka lite

# [1.1.0](https://github.com/joneff/baka/compare/v1.0.1...v1.1.0) (2021-08-31)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@joneff/baka",
"description": "Dead stupid sass inline importer (inliner)",
"version": "1.1.0",
"version": "2.0.0",
"author": "Ivan Zhekov <[email protected]>",
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit 8616d5a

Please sign in to comment.