@fastkit/plugboy-sass-plugin 2.1.0 → 2.2.0
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/types.ts","../src/plugin.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"sources":["../src/types.ts","../src/plugin.ts"],"names":[],"mappings":";;;;;;AAIO,IAAM,WAAA,GAAc,cAAA;;;ACApB,SAAS,iBAAiB,OAAA,EAAyB;AACxD,EAAA,OAAO,YAAA,CAAyB;AAAA,IAC9B,IAAA,EAAM,WAAA;AAAA,IACN,cAAA,EAAgB,CAAC,UAAA,CAAW,OAAO,CAA6B;AAAA,GACjE,CAAA;AACH","file":"plugboy-sass-plugin.mjs","sourcesContent":["import { Plugin } from '@fastkit/plugboy';\n\nexport interface PluginOptions {}\n\nexport const PLUGIN_NAME = 'plugboy-sass';\n\nexport interface SassPlugin extends Plugin {\n name: typeof PLUGIN_NAME;\n}\n","import { definePlugin, ESBuildPlugin } from '@fastkit/plugboy';\nimport { sassPlugin } from 'esbuild-sass-plugin';\nimport { PLUGIN_NAME, PluginOptions, SassPlugin } from './types';\n\nexport function createSassPlugin(options?: PluginOptions) {\n return definePlugin<SassPlugin>({\n name: PLUGIN_NAME,\n esbuildPlugins: [sassPlugin(options) as unknown as ESBuildPlugin],\n });\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/plugboy-sass-plugin",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "plugboy-sass-plugin",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plugboy",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"esbuild-sass-plugin": "^3.3.1",
|
|
40
40
|
"resolve": "^1.22.10",
|
|
41
|
-
"sass": "^1.93.
|
|
41
|
+
"sass": "^1.93.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@fastkit/plugboy": "^0.3.0"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "plugboy build",
|
|
51
51
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
52
|
-
"eslint": "eslint .
|
|
53
|
-
"eslint:fix": "eslint . --
|
|
52
|
+
"eslint": "eslint .",
|
|
53
|
+
"eslint:fix": "eslint . --fix",
|
|
54
54
|
"format": "pnpm run eslint:fix",
|
|
55
55
|
"lint": "pnpm run eslint",
|
|
56
56
|
"test": "vitest run",
|