@stacksjs/ts-css 0.1.0 โ†’ 0.1.1

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 CHANGED
@@ -1,3 +1,40 @@
1
+ [Compare changes](https://github.com/stacksjs/ts-css/compare/v0.1.0...v0.1.1)
2
+
3
+ ## ๐Ÿ› Bug Fixes
4
+
5
+ - remove consumer postinstall hook ([44d1ee3](https://github.com/stacksjs/ts-css/commit/44d1ee3)) _(by Chris <chrisbreuer93@gmail.com>)_
6
+ - **scripts**: stop double-generating CHANGELOG on release ([7fe2506](https://github.com/stacksjs/ts-css/commit/7fe2506)) _(by Glenn Michael Torregosa <gtorregosa@gmail.com>)_
7
+
8
+ ## ๐Ÿค– Continuous Integration
9
+
10
+ - drop redundant setup-bun (pantry installs bun via deps.yaml) ([7fafadf](https://github.com/stacksjs/ts-css/commit/7fafadf)) _(by glennmichael123 <gtorregosa@gmail.com>)_
11
+
12
+ ## ๐Ÿงน Chores
13
+
14
+ - release v0.1.1 ([5639aff](https://github.com/stacksjs/ts-css/commit/5639aff)) _(by Chris <chrisbreuer93@gmail.com>)_
15
+ - **deps**: declare bun ^1.3.14 in deps.yaml ([83f0002](https://github.com/stacksjs/ts-css/commit/83f0002)) _(by Chris <chrisbreuer93@gmail.com>)_
16
+ - **deps**: refresh bun.lock to pick up pickier 0.1.37 ([6b8d86c](https://github.com/stacksjs/ts-css/commit/6b8d86c)) _(by glennmichael123 <gtorregosa@gmail.com>)_
17
+ - **deps**: refresh bun.lock to pick up pickier 0.1.35 ([2dc313e](https://github.com/stacksjs/ts-css/commit/2dc313e)) _(by glennmichael123 <gtorregosa@gmail.com>)_
18
+ - **deps**: refresh bun.lock to pick up pickier 0.1.33 ([a89a742](https://github.com/stacksjs/ts-css/commit/a89a742)) _(by glennmichael123 <gtorregosa@gmail.com>)_
19
+ - **deps**: refresh bun.lock to pick up @stacksjs/logsmith 0.2.3 ([0b2e754](https://github.com/stacksjs/ts-css/commit/0b2e754)) _(by glennmichael123 <gtorregosa@gmail.com>)_
20
+ - **deps**: refresh bun.lock to pick up buddy-bot 0.9.20 ([66d94f2](https://github.com/stacksjs/ts-css/commit/66d94f2)) _(by glennmichael123 <gtorregosa@gmail.com>)_
21
+ - **deps**: bump better-dx to ^0.2.15 ([cbe57f9](https://github.com/stacksjs/ts-css/commit/cbe57f9)) _(by glennmichael123 <gtorregosa@gmail.com>)_
22
+ - **ci**: bump actions/checkout to v6, actions/cache to v5 ([7ed4b33](https://github.com/stacksjs/ts-css/commit/7ed4b33)) _(by glennmichael123 <gtorregosa@gmail.com>)_
23
+ - refresh bun.lock to pick up bun-plugin-dtsx@0.9.18 ([12aa00f](https://github.com/stacksjs/ts-css/commit/12aa00f)) _(by glennmichael123 <gtorregosa@gmail.com>)_
24
+ - refresh bun.lock and apply pickier --fix ([ceb799c](https://github.com/stacksjs/ts-css/commit/ceb799c)) _(by glennmichael123 <gtorregosa@gmail.com>)_
25
+ - refresh bun.lock ([9a27cc0](https://github.com/stacksjs/ts-css/commit/9a27cc0)) _(by glennmichael123 <gtorregosa@gmail.com>)_
26
+ - refresh bun.lock to pick up latest pickier ([5c717ee](https://github.com/stacksjs/ts-css/commit/5c717ee)) _(by glennmichael123 <gtorregosa@gmail.com>)_
27
+
28
+ ## โช Reverts
29
+
30
+ - keep staged-lint kebab + bunx gitlint shorthand ([cb5bcc0](https://github.com/stacksjs/ts-css/commit/cb5bcc0)) _(by glennmichael123 <gtorregosa@gmail.com>)_
31
+
32
+ ## Contributors
33
+
34
+ - _Chris <chrisbreuer93@gmail.com>_
35
+ - _Glenn Michael Torregosa <gtorregosa@gmail.com>_
36
+ - _glennmichael123 <gtorregosa@gmail.com>_
37
+
1
38
  ### ๐Ÿ› Bug Fixes
2
39
 
3
40
  - add setup-bun to publish-commit job ([ba0a364](https://github.com/stacksjs/ts-css/commit/ba0a364)) _(by glennmichael123 <gtorregosa@gmail.com>)_
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- export type { CssNode, CssNodeType, ListItem, ParseOptions } from './parse';
2
- export type { Adapter, CompiledQuery, Options } from './select';
3
- export type { Selector, SelectorType } from './what';
4
- export type { MinifyOptions, MinifyResult, Specificity } from './optimize';
1
+ export type { CssNode, CssNodeType, ListItem, ParseOptions } from './parse/index';
2
+ export type { Adapter, CompiledQuery, Options } from './select/index';
3
+ export type { Selector, SelectorType } from './what/index';
4
+ export type { MinifyOptions, MinifyResult, Specificity } from './optimize/index';
5
5
  /**
6
6
  * @stacksjs/ts-css โ€” pure-TypeScript CSS toolkit.
7
7
  *
@@ -13,13 +13,13 @@ export type { MinifyOptions, MinifyResult, Specificity } from './optimize';
13
13
  */
14
14
  export * from './config';
15
15
  // Sub-module namespaces โ€” `import * as csstree from '@stacksjs/ts-css'` etc.
16
- export * as csstree from './parse';
17
- export * as cssWhat from './what';
18
- export * as cssSelect from './select';
19
- export * as csso from './optimize';
16
+ export * as csstree from './parse/index';
17
+ export * as cssWhat from './what/index';
18
+ export * as cssSelect from './select/index';
19
+ export * as csso from './optimize/index';
20
20
  // Top-level convenience re-exports
21
- export { clone, generate, List, parse, walk } from './parse';
22
- export { is, selectAll, selectOne } from './select';
23
- export { isTraversal, parse as parseSelector, stringify as stringifySelector } from './what';
24
- export { minify, minifyBlock, specificity, syntax } from './optimize';
21
+ export { clone, generate, List, parse, walk } from './parse/index';
22
+ export { is, selectAll, selectOne } from './select/index';
23
+ export { isTraversal, parse as parseSelector, stringify as stringifySelector } from './what/index';
24
+ export { minify, minifyBlock, specificity, syntax } from './optimize/index';
25
25
  export * from './types';