Skip to content

Commit 6e45ad2

Browse files
Version Packages (#1131)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent fdb431d commit 6e45ad2

15 files changed

Lines changed: 67 additions & 21 deletions

File tree

.changeset/odd-grapes-provide.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 29.0.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`d530d02`](https://github.com/tivac/modular-css/commit/d530d02535ba146cfc92727524e1f6c10eceb090)]:
8+
- @modular-css/processor@29.3.0
9+
- @modular-css/glob@29.0.7
10+
311
## 29.0.6
412

513
### Patch Changes

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modular-css/cli",
3-
"version": "29.0.6",
3+
"version": "29.0.7",
44
"description": "CLI for modular-css",
55
"main": "./cli.js",
66
"bin": {
@@ -28,8 +28,8 @@
2828
"cli"
2929
],
3030
"dependencies": {
31-
"@modular-css/glob": "^29.0.6",
32-
"@modular-css/processor": "^29.2.0",
31+
"@modular-css/glob": "^29.0.7",
32+
"@modular-css/processor": "^29.3.0",
3333
"meow": "^9.0.0",
3434
"mkdirp": "^2.1.3"
3535
}

packages/css-to-js/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 29.1.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`d530d02`](https://github.com/tivac/modular-css/commit/d530d02535ba146cfc92727524e1f6c10eceb090)]:
8+
- @modular-css/processor@29.3.0
9+
310
## 29.1.4
411

512
### Patch Changes

packages/css-to-js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modular-css/css-to-js",
3-
"version": "29.1.4",
3+
"version": "29.1.5",
44
"description": "modular-css powered conversion of CSS to JavaScript",
55
"main": "./css-to-js.js",
66
"repository": {
@@ -24,7 +24,7 @@
2424
"postcss"
2525
],
2626
"dependencies": {
27-
"@modular-css/processor": "^29.2.0",
27+
"@modular-css/processor": "^29.3.0",
2828
"dedent": "^1.7.0",
2929
"identifierfy": "^2.0.0",
3030
"just-extend": "^6.0.1"

packages/glob/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 29.0.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`d530d02`](https://github.com/tivac/modular-css/commit/d530d02535ba146cfc92727524e1f6c10eceb090)]:
8+
- @modular-css/processor@29.3.0
9+
310
## 29.0.6
411

512
### Patch Changes

packages/glob/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modular-css/glob",
3-
"version": "29.0.6",
3+
"version": "29.0.7",
44
"description": "Glob support for modular-css",
55
"main": "./glob.js",
66
"repository": {
@@ -24,7 +24,7 @@
2424
"modular-css"
2525
],
2626
"dependencies": {
27-
"@modular-css/processor": "^29.2.0",
27+
"@modular-css/processor": "^29.3.0",
2828
"globule": "^1.1.0"
2929
}
3030
}

packages/processor/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 29.3.0
4+
5+
### Minor Changes
6+
7+
- [#1130](https://github.com/tivac/modular-css/pull/1130) [`d530d02`](https://github.com/tivac/modular-css/commit/d530d02535ba146cfc92727524e1f6c10eceb090) Thanks [@tivac](https://github.com/tivac)! - Add caching of the internal parsing done for `composes` & `@value` to provide a small speed-up to repeated values in large codebases.
8+
39
## 29.2.0
410

511
### Minor Changes

packages/processor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modular-css/processor",
3-
"version": "29.2.0",
3+
"version": "29.3.0",
44
"description": "A streamlined reinterpretation of CSS Modules",
55
"main": "./processor.js",
66
"repository": {

packages/rollup/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 29.1.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`d530d02`](https://github.com/tivac/modular-css/commit/d530d02535ba146cfc92727524e1f6c10eceb090)]:
8+
- @modular-css/processor@29.3.0
9+
- @modular-css/css-to-js@29.1.5
10+
311
## 29.1.4
412

513
### Patch Changes

0 commit comments

Comments
 (0)