Skip to content

Commit

Permalink
feat(helpers): update jora to 1.0.0-beta.8
Browse files Browse the repository at this point in the history
feat(helpers): update discovery to 1.0.0-beta.78
  • Loading branch information
smelukov committed Sep 24, 2023
1 parent bbeae67 commit 087186a
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 36 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 5.28.0 (24 September 2023)

### Features

- update jora from 1.0.0-beta.7 to 1.0.0-beta.8 (see [changelog](https://github.com/discoveryjs/jora/releases/tag/v1.0.0-beta.8))

lots of new methods and [assertions](https://discoveryjs.github.io/jora/#article:jora-syntax-assertions)-feature
- update discoveryjs from 1.0.0-beta.77 to 1.0.0-beta.78

## 5.27.0 (24 August 2023)

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Learn more on [Statoscope: A Course Of Intensive Therapy For Your Bundle](https:
- 🕵️ Packages copies and duplicates of modules detection
- 🧪 Stats validation with a bunch of useful rules (e.g. on CLI)
- 🔄 Stats comparison
- 📊 Custom reports for your stats
- 📊 Custom reports for your stats (with [jora QL](https://discoveryjs.github.io/jora/))
- 🐘 No stats size limitation
- 🗜 Smart HTML report compression (up to 200x) (learn more on [wiki](https://github.com/statoscope/statoscope/wiki/Statoscope-5.25:-Compressing-stats-with-Binary-JSON))

Expand Down
14 changes: 7 additions & 7 deletions packages/helpers/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 packages/helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@types/archy": "^0.0.32",
"@types/semver": "^7.3.10",
"archy": "~1.0.0",
"jora": "^1.0.0-beta.7",
"jora": "1.0.0-beta.8",
"semver": "^7.3.7"
}
}
6 changes: 4 additions & 2 deletions packages/helpers/src/jora/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,10 @@ export type Options = {

export function prepareWithJora(input: unknown, options: Options = {}): Prepared {
const j = jora.setup({
...helpers(),
...options.helpers,
methods: {
...helpers(),
...options.helpers,
},
});

const rootContext = {};
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This package contains a UI for analyzing stats of your bundle.
- 🗺 Size map (entrypoints/chunks/packages)
- 🕵️ Packages copies and duplicates of modules detection
- 🔄 Stats comparison
- 📊 Custom reports for your stats
- 📊 Custom reports for your stats (with [jora QL](https://discoveryjs.github.io/jora/))
- 🐘 No stats size limitation
- 🗜 Smart HTML report compression (up to 200x)

Expand Down
45 changes: 22 additions & 23 deletions packages/webpack-ui/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 packages/webpack-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"devDependencies": {
"@carrotsearch/foamtree": "^3.5.0",
"@discoveryjs/discovery": "^1.0.0-beta.77",
"@discoveryjs/discovery": "^1.0.0-beta.78",
"@popperjs/core": "^2.11.5",
"@statoscope/helpers": "5.25.0",
"@statoscope/stats": "5.14.1",
Expand Down

0 comments on commit 087186a

Please sign in to comment.