Skip to content

Commit

Permalink
Merge pull request #290 from core-ds/changeset-release/master
Browse files Browse the repository at this point in the history
  • Loading branch information
heymdall-legal authored Dec 5, 2024
2 parents 5d15dcf + 2e6e0b9 commit 8ce02cc
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 29 deletions.
26 changes: 0 additions & 26 deletions .changeset/quick-starfishes-taste.md

This file was deleted.

29 changes: 29 additions & 0 deletions packages/arui-scripts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# [15.3.0](https://github.com/core-ds/arui-scripts/compare/v15.2.0...v15.3.0) (2023-06-30)

## 18.6.0

### Minor Changes

- [#287](https://github.com/core-ds/arui-scripts/pull/287) [`fb3b80d`](https://github.com/core-ds/arui-scripts/commit/fb3b80db242978d88eb6c0eac382498b3aa04459) Thanks [@VladislavNsk](https://github.com/VladislavNsk)! - Добавлен кастомный плагин postcss-global-variables, для оптимизации времени обработки глобальных переменных.
@csstools/postcss-global-data _удален_

Проекты, которые использовали в оверрайдах кастомные настройки для плагина @csstools/postcss-global-data, должны перейти на использование postcss-global-variables следующим образом

```
postcss: (config) => {
const overrideConfig = config.map((plugin) => {
if (plugin.name === 'postCssGlobalVariables') {
return {
...plugin,
options: plugin.options.concat([
// ваши файлы
])
}
}
return plugin;
});
return overrideConfig;
}
```
Плагин работает только с глобальными переменными, если вам надо вставить что-то другое, отличное от глобальных переменных, вам нужно будет добавить @csstools/postcss-global-data в свой проект самостоятельно
## 18.5.0
### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/arui-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arui-scripts",
"version": "18.5.0",
"version": "18.6.0",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"license": "MPL-2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/example-modules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# example-modules

## 1.1.50

### Patch Changes

- Updated dependencies [[`fb3b80d`](https://github.com/core-ds/arui-scripts/commit/fb3b80db242978d88eb6c0eac382498b3aa04459)]:
- [email protected]

## 1.1.49

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/example-modules/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-modules",
"version": "1.1.49",
"version": "1.1.50",
"private": true,
"scripts": {
"build:app": "arui-scripts build",
Expand Down
7 changes: 7 additions & 0 deletions packages/example/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# example

## 1.1.50

### Patch Changes

- Updated dependencies [[`fb3b80d`](https://github.com/core-ds/arui-scripts/commit/fb3b80db242978d88eb6c0eac382498b3aa04459)]:
- [email protected]

## 1.1.49

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example",
"version": "1.1.49",
"version": "1.1.50",
"private": true,
"scripts": {
"build:app": "arui-scripts build",
Expand Down

0 comments on commit 8ce02cc

Please sign in to comment.