Skip to content

Commit

Permalink
Merge pull request #38 from brianneisler/release/v0.3.1
Browse files Browse the repository at this point in the history
Release v0.3.1
  • Loading branch information
brianneisler authored May 18, 2021
2 parents 0834088 + 95ee79d commit 7cd6334
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@
- Add collapsing of small functions to help eliminate operation overhead and slight reduction in code size.
- Update docs
- Re-add setupContext method for programmatic usage. Upgrade firetree. Add export folders to allow for importing of subfolders. Add stdout support as a method of returning minified code.

## Release v0.3.1

- Upgrade all dependencies to latest versions. Update npm token in travis file
2 changes: 0 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ git push origin release/vX.X.X
git log --pretty="- %s" --no-merges origin/release/vX.X.X..release/vX.X.X >> CHANGELOG.md
```

git log --pretty="- %s" --no-merges origin/release/v0.2.2..release/v0.3.0 >> CHANGELOG.md

- Commit the changelog. Replace Xs with new version number.

```sh
Expand Down
6 changes: 3 additions & 3 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

### function minimize()

[source](https://github.com/brianneisler/firemin.git/tree/v0.3.0/src/minimizer/minimize.js#L8)      since v0.1.0
[source](https://github.com/brianneisler/firemin.git/tree/v0.3.1/src/minimizer/minimize.js#L8)      since v0.1.0

<p>Minimizes the rules contained at the given filePath.<br />
If given an output this method will output the result to the given<br />
Expand Down Expand Up @@ -55,7 +55,7 @@ await minimize(context, {

### **private** function cacheChain()

[source](https://github.com/brianneisler/firemin.git/tree/v0.3.0/src/utils/cacheChain.js#L42)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; since v0.1.0
[source](https://github.com/brianneisler/firemin.git/tree/v0.3.1/src/utils/cacheChain.js#L42)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; since v0.1.0

<p>This method generates a specific object instance for use in a WeakMap cache.<br />
The object instance is unique based upon the parameters that are passed to<br />
Expand Down Expand Up @@ -83,7 +83,7 @@ cache chains connected to the object will automatically be removed from the cach

### **private** function functionDefineLength()

[source](https://github.com/brianneisler/firemin.git/tree/v0.3.0/src/utils/functionDefineLength.js#L55)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; since v0.1.0
[source](https://github.com/brianneisler/firemin.git/tree/v0.3.1/src/utils/functionDefineLength.js#L55)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; since v0.1.0

<p>Defines <code>length</code> for the given <code>func</code></p>
<p>Note: This mutates <code>func</code></p>
Expand Down
2 changes: 1 addition & 1 deletion 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,6 +1,6 @@
{
"name": "firemin",
"version": "0.3.0",
"version": "0.3.1",
"description": "Firebase Firestore/Storage security rules minifier",
"author": "Brian Neisler <hello@brianneisler.com>",
"license": "Apache-2.0",
Expand Down

0 comments on commit 7cd6334

Please sign in to comment.