@visulima/rollup-plugin-css 1.0.0-alpha.21 → 1.0.0-alpha.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/index.d.ts +2 -2
- package/dist/loaders/less/index.d.ts +1 -1
- package/dist/loaders/lightningcss.d.ts +1 -1
- package/dist/loaders/postcss/index.d.ts +1 -1
- package/dist/loaders/sass/index.d.ts +2 -2
- package/dist/loaders/sourcemap.d.ts +1 -1
- package/dist/loaders/stylus/index.d.ts +1 -1
- package/dist/loaders/tailwindcss-oxide.d.ts +1 -1
- package/dist/minifiers/cssnano.d.ts +1 -1
- package/dist/minifiers/lightningcss.d.ts +1 -1
- package/dist/packem_shared/{types-BeCJXZiE.d.ts → types-15b79qIg.d.ts} +2 -2
- package/dist/utils/index.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## @visulima/rollup-plugin-css [1.0.0-alpha.23](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-css@1.0.0-alpha.22...@visulima/rollup-plugin-css@1.0.0-alpha.23) (2026-03-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/packem-share:** upgraded to 1.0.0-alpha.24
|
|
7
|
+
|
|
8
|
+
## @visulima/rollup-plugin-css [1.0.0-alpha.22](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-css@1.0.0-alpha.21...@visulima/rollup-plugin-css@1.0.0-alpha.22) (2026-03-14)
|
|
9
|
+
|
|
10
|
+
### Miscellaneous Chores
|
|
11
|
+
|
|
12
|
+
* **rollup-plugin-css:** update LICENSE and improve SassLoaderOptions type formatting ([8fa7a43](https://github.com/visulima/packem/commit/8fa7a435a57b92466da283000fde33e7211ec749))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
* **@visulima/packem-share:** upgraded to 1.0.0-alpha.23
|
|
18
|
+
|
|
1
19
|
## @visulima/rollup-plugin-css [1.0.0-alpha.21](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-css@1.0.0-alpha.20...@visulima/rollup-plugin-css@1.0.0-alpha.21) (2026-03-06)
|
|
2
20
|
|
|
3
21
|
### Bug Fixes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Plugin } from 'rollup';
|
|
2
|
-
import { S as StyleOptions } from './packem_shared/types-
|
|
3
|
-
export { A as AutoModules, E as ExtractedData, I as InjectOptions, a as InternalStyleOptions, L as LightningCSSOptions, P as PostCSSConfigLoaderOptions, b as PostCSSOptions } from './packem_shared/types-
|
|
2
|
+
import { S as StyleOptions } from './packem_shared/types-15b79qIg.js';
|
|
3
|
+
export { A as AutoModules, E as ExtractedData, I as InjectOptions, a as InternalStyleOptions, L as LightningCSSOptions, P as PostCSSConfigLoaderOptions, b as PostCSSOptions } from './packem_shared/types-15b79qIg.js';
|
|
4
4
|
import { Environment } from '@visulima/packem-share/types';
|
|
5
5
|
import 'cssnano';
|
|
6
6
|
import 'lightningcss';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as Loader, e as SassLoaderOptions } from '../../packem_shared/types-
|
|
2
|
-
export { f as SassLoaderContext } from '../../packem_shared/types-
|
|
1
|
+
import { c as Loader, e as SassLoaderOptions } from '../../packem_shared/types-15b79qIg.js';
|
|
2
|
+
export { f as SassLoaderContext } from '../../packem_shared/types-15b79qIg.js';
|
|
3
3
|
import 'cssnano';
|
|
4
4
|
import 'lightningcss';
|
|
5
5
|
import 'postcss';
|
|
@@ -55,11 +55,11 @@ type SassLoaderContext = {
|
|
|
55
55
|
resourcePath: string;
|
|
56
56
|
rootContext: string;
|
|
57
57
|
};
|
|
58
|
-
type SassLoaderOptions =
|
|
58
|
+
type SassLoaderOptions = {
|
|
59
59
|
additionalData: string | ((content: string | Buffer, loaderContext: SassLoaderContext) => Promise<string>) | ((content: string | Buffer, loaderContext: SassLoaderContext) => string);
|
|
60
60
|
implementation?: "sass-embedded" | "sass";
|
|
61
61
|
warnRuleAsWarning?: boolean;
|
|
62
|
-
};
|
|
62
|
+
} & (Omit<StringOptions<"sync">, "charset" | "indentedSyntax"> | Omit<StringOptions$1<"sync">, "charset" | "indentedSyntax">);
|
|
63
63
|
|
|
64
64
|
type StylusLoaderOptions = RenderOptions;
|
|
65
65
|
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SourceMapGenerator, RawSourceMap, SourceMapConsumer } from 'source-map-js';
|
|
2
|
-
import { h as Extracted, b as PostCSSOptions, S as StyleOptions, a as InternalStyleOptions, i as LoaderContext } from '../packem_shared/types-
|
|
2
|
+
import { h as Extracted, b as PostCSSOptions, S as StyleOptions, a as InternalStyleOptions, i as LoaderContext } from '../packem_shared/types-15b79qIg.js';
|
|
3
3
|
import { RollupLogger } from '@visulima/packem-share/utils';
|
|
4
4
|
import { Result } from 'postcss-load-config';
|
|
5
5
|
import { NapiResolveOptions } from 'oxc-resolver';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/rollup-plugin-css",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.23",
|
|
4
4
|
"description": "CSS processing plugin for packem",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visulima",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"@rollup/pluginutils": "5.3.0",
|
|
100
100
|
"@visulima/fs": "4.1.0",
|
|
101
101
|
"@visulima/package": "4.1.7",
|
|
102
|
-
"@visulima/packem-share": "1.0.0-alpha.
|
|
102
|
+
"@visulima/packem-share": "1.0.0-alpha.24",
|
|
103
103
|
"@visulima/path": "2.0.5",
|
|
104
104
|
"mlly": "1.8.1",
|
|
105
105
|
"oxc-resolver": "11.19.1",
|