generated from alecodes/base-template
Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3752f58d12 | |||
| b032ab7cd0 | |||
| cf0ea28fa1 | |||
| 2ca1ee5354 |
4 changed files with 17 additions and 6 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -2,6 +2,18 @@
|
||||||
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
||||||
|
|
||||||
- - -
|
- - -
|
||||||
|
## v0.1.3 - 2025-04-11
|
||||||
|
#### Bug Fixes
|
||||||
|
- add support for sass extension - (b032ab7) - aleidk
|
||||||
|
|
||||||
|
- - -
|
||||||
|
|
||||||
|
## v0.1.2 - 2025-02-19
|
||||||
|
#### Bug Fixes
|
||||||
|
- change package to scope to prevent resolution issues between registries - (2ca1ee5) - aleidk
|
||||||
|
|
||||||
|
- - -
|
||||||
|
|
||||||
## v0.1.1 - 2025-02-19
|
## v0.1.1 - 2025-02-19
|
||||||
#### Bug Fixes
|
#### Bug Fixes
|
||||||
- add sass as a dependency - (a90901c) - aleidk
|
- add sass as a dependency - (a90901c) - aleidk
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
[install]
|
[install.scopes]
|
||||||
|
|
||||||
registry = { token = "$NPM_REGISTRY_TOKEN", url = "https://git.alecodes.page/api/packages/alecodes/npm/" }
|
"@alecodes" = { token = "$NPM_REGISTRY_TOKEN", url = "https://git.alecodes.page/api/packages/alecodes/npm/" }
|
||||||
|
|
|
||||||
3
index.ts
3
index.ts
|
|
@ -16,7 +16,7 @@ const sassPlugin: BunPlugin = {
|
||||||
async setup(build: PluginBuilder) {
|
async setup(build: PluginBuilder) {
|
||||||
const sass = await import("sass");
|
const sass = await import("sass");
|
||||||
|
|
||||||
build.onLoad({ filter: /\.scss$/ }, async ({ path }) => {
|
build.onLoad({ filter: /\.scss|sass$/ }, async ({ path }) => {
|
||||||
const result = await sass.compileAsync(path, {
|
const result = await sass.compileAsync(path, {
|
||||||
importers: [nodeModuleImporter],
|
importers: [nodeModuleImporter],
|
||||||
});
|
});
|
||||||
|
|
@ -30,4 +30,3 @@ const sassPlugin: BunPlugin = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export default sassPlugin;
|
export default sassPlugin;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bun-plugin-sass",
|
"name": "@alecodes/bun-plugin-sass",
|
||||||
"version": "0.1.1",
|
"version": "0.1.3",
|
||||||
"module": "index.ts",
|
"module": "index.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue