Skip to content

Commit 6c7fecc

Browse files
committed
[2025-10-27] release: 0.3.0-alpha.1
1 parent 9df3976 commit 6c7fecc

File tree

305 files changed

+1623
-1566
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

305 files changed

+1623
-1566
lines changed
237 KB
Binary file not shown.

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,35 @@ and this project adheres to
1919
<!--CHANGELOG_NEW-->
2020

2121

22+
## **0.3.0-alpha.1** — 2025-10-27
23+
24+
Better compile concurrency and way improves sass compiling!
25+
26+
### Misc. Breaking
27+
- Added noPropertyAccessFromIndexSignature and noUncheckedIndexedAccess to
28+
tsconfig
29+
30+
### Added
31+
- Added AbstractStage.isWatchedUpdate property
32+
- Added AbstractStage.sassOpts property
33+
- Added AbstractStage.runCustomScssDirSubStage sassOpts param
34+
- Added Stage_Compiler.sassBulk method to run sass compilation concurrently
35+
- Updated Stage_Compiler.sass for this to work
36+
- Added more input options to Compile.files substage
37+
- Added benchmarkCompileTime option to sass compiler
38+
- Added option to compile scss via the CLI
39+
- Added array input to AbstractStage.runCustomScssDirSubStage
40+
41+
### Changed
42+
- Converted Compile.files substage to be more properly asynchronous
43+
- Updated API used to sass-embedded for better performance (esp. async)
44+
45+
### Fixed
46+
- Fixed a bug in AbstractStage.atry that wasn't letting the callback function be
47+
actually async
48+
- Improved AbstractStage.startEndNotice when triggered by a watcher
49+
50+
2251
## **0.3.0-alpha** — 2025-09-21
2352

2453
### Changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ children:
77
---
88

99
<!--README_HEADER-->
10-
# NPM Build Utilities @ 0.3.0-alpha.1.draft
10+
# NPM Build Utilities @ 0.3.0-alpha.1
1111
<!--/README_HEADER-->
1212

1313
<!--README_DESC-->
@@ -36,8 +36,8 @@ or
3636

3737
<!--README_INSTALL-->
3838
```bash
39-
npm i -D @maddimathon/build-utilities@0.3.0-alpha
40-
npm i -D github:maddimathon/build-utilities#0.3.0-alpha
39+
npm i -D @maddimathon/build-utilities@0.3.0-alpha.1
40+
npm i -D github:maddimathon/build-utilities#0.3.0-alpha.1
4141
```
4242
<!--/README_INSTALL-->
4343

demos/complete/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"dependencies": {
4141
},
4242
"devDependencies": {
43-
"@maddimathon/build-utilities": "0.3.0-alpha"
43+
"@maddimathon/build-utilities": "0.3.0-alpha.1"
4444
},
4545

4646
"browserslist": [

demos/no-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"dependencies": {
4545
},
4646
"devDependencies": {
47-
"@maddimathon/build-utilities": "0.3.0-alpha"
47+
"@maddimathon/build-utilities": "0.3.0-alpha.1"
4848
},
4949

5050
"browserslist": [

dist/js/bin/help.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @packageDocumentation
66
*/
77
/*!
8-
* @maddimathon/build-utilities@0.3.0-alpha.1.draft
8+
* @maddimathon/build-utilities@0.3.0-alpha.1
99
* @license MIT
1010
*/
1111
import type { CLI } from '../types/index.js';

dist/js/bin/help.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/bin/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @packageDocumentation
66
*/
77
/*!
8-
* @maddimathon/build-utilities@0.3.0-alpha.1.draft
8+
* @maddimathon/build-utilities@0.3.0-alpha.1
99
* @license MIT
1010
*/
1111
export {};

dist/js/bin/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/bin/lib/getConfig.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @packageDocumentation
55
*/
66
/*!
7-
* @maddimathon/build-utilities@0.3.0-alpha.1.draft
7+
* @maddimathon/build-utilities@0.3.0-alpha.1
88
* @license MIT
99
*/
1010
import type { CLI } from '../../types/index.js';

0 commit comments

Comments
 (0)