rollup-plugin-solid-styled 0.8.2 → 0.9.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.
package/README.md CHANGED
@@ -37,6 +37,23 @@ solidStyled({
37
37
  > **Note**
38
38
  > When you are using a SolidJS Rollup plugin, make sure that solid-styled runs first.
39
39
 
40
+ ## Config options
41
+
42
+ ```js
43
+ {
44
+ // Toggle verbose scope names based
45
+ // on the owning component's name,
46
+ // useful for debugging
47
+ // Default: false
48
+ "verbose": true,
49
+
50
+ // Allows prefixing scope names
51
+ // useful for package publishing
52
+ // Default: undefined ('')
53
+ "prefix": "example",
54
+ }
55
+ ```
56
+
40
57
  ## Sponsors
41
58
 
42
59
  ![Sponsors](https://github.com/lxsmnsyc/sponsors/blob/main/sponsors.svg?raw=true)
@@ -30,63 +30,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // src/index.ts
31
31
  var src_exports = {};
32
32
  __export(src_exports, {
33
- default: () => solidStyledPlugin
33
+ default: () => src_default
34
34
  });
35
35
  module.exports = __toCommonJS(src_exports);
36
- var import_babel = __toESM(require("solid-styled/babel"), 1);
37
- var import_pluginutils = require("@rollup/pluginutils");
38
- var babel = __toESM(require("@babel/core"), 1);
39
- var import_path = __toESM(require("path"), 1);
40
- var DEFAULT_INCLUDE = "src/**/*.{jsx,tsx,ts,js,mjs,cjs}";
41
- var DEFAULT_EXCLUDE = "node_modules/**/*.{jsx,tsx,ts,js,mjs,cjs}";
42
- function solidStyledPlugin(options = {}) {
43
- var _a, _b;
44
- const filter = (0, import_pluginutils.createFilter)(
45
- ((_a = options.filter) == null ? void 0 : _a.include) || DEFAULT_INCLUDE,
46
- ((_b = options.filter) == null ? void 0 : _b.exclude) || DEFAULT_EXCLUDE
47
- );
48
- return {
49
- name: "solid-styled",
50
- async transform(code, id) {
51
- var _a2, _b2, _c, _d;
52
- if (filter(id)) {
53
- const plugins = ["jsx"];
54
- if (/\.[mc]tsx?$/i.test(id)) {
55
- plugins.push("typescript");
56
- }
57
- const result = await babel.transformAsync(code, {
58
- ...options.babel,
59
- plugins: [
60
- [import_babel.default, {
61
- verbose: options.verbose,
62
- prefix: options.prefix,
63
- source: id
64
- }],
65
- ...((_a2 = options.babel) == null ? void 0 : _a2.plugins) || []
66
- ],
67
- parserOpts: {
68
- ...((_b2 = options.babel) == null ? void 0 : _b2.parserOpts) || {},
69
- plugins: [
70
- ...((_d = (_c = options.babel) == null ? void 0 : _c.parserOpts) == null ? void 0 : _d.plugins) || [],
71
- ...plugins
72
- ]
73
- },
74
- filename: import_path.default.basename(id),
75
- ast: false,
76
- sourceMaps: true,
77
- configFile: false,
78
- babelrc: false,
79
- sourceFileName: id
80
- });
81
- if (result) {
82
- return {
83
- code: result.code || "",
84
- map: result.map
85
- };
86
- }
87
- }
88
- return void 0;
89
- }
90
- };
91
- }
36
+ var import_unplugin_solid_styled = __toESM(require("unplugin-solid-styled"), 1);
37
+ var solidStyledPlugin = import_unplugin_solid_styled.default.rollup;
38
+ var src_default = solidStyledPlugin;
92
39
  //# sourceMappingURL=index.cjs.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/index.ts"],
4
- "sourcesContent": ["import solidStyledBabel from 'solid-styled/babel';\nimport { Plugin } from 'rollup';\nimport { createFilter, FilterPattern } from '@rollup/pluginutils';\nimport * as babel from '@babel/core';\nimport path from 'path';\n\nexport interface SolidStyledPluginFilter {\n include?: FilterPattern;\n exclude?: FilterPattern;\n}\n\nexport interface SolidStyledPluginOptions {\n verbose?: boolean;\n prefix?: string;\n filter?: SolidStyledPluginFilter;\n babel?: babel.TransformOptions;\n}\n\nconst DEFAULT_INCLUDE = 'src/**/*.{jsx,tsx,ts,js,mjs,cjs}';\nconst DEFAULT_EXCLUDE = 'node_modules/**/*.{jsx,tsx,ts,js,mjs,cjs}';\n\nexport default function solidStyledPlugin(\n options: SolidStyledPluginOptions = {},\n): Plugin {\n const filter = createFilter(\n options.filter?.include || DEFAULT_INCLUDE,\n options.filter?.exclude || DEFAULT_EXCLUDE,\n );\n return {\n name: 'solid-styled',\n async transform(code, id) {\n if (filter(id)) {\n const plugins: NonNullable<NonNullable<babel.TransformOptions['parserOpts']>['plugins']> = ['jsx'];\n if (/\\.[mc]tsx?$/i.test(id)) {\n plugins.push('typescript');\n }\n const result = await babel.transformAsync(code, {\n ...options.babel,\n plugins: [\n [solidStyledBabel, {\n verbose: options.verbose,\n prefix: options.prefix,\n source: id,\n }],\n ...(options.babel?.plugins || []),\n ],\n parserOpts: {\n ...(options.babel?.parserOpts || {}),\n plugins: [\n ...(options.babel?.parserOpts?.plugins || []),\n ...plugins,\n ],\n },\n filename: path.basename(id),\n ast: false,\n sourceMaps: true,\n configFile: false,\n babelrc: false,\n sourceFileName: id,\n });\n\n if (result) {\n return {\n code: result.code || '',\n map: result.map,\n };\n }\n }\n return undefined;\n },\n };\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAA6B;AAE7B,yBAA4C;AAC5C,YAAuB;AACvB,kBAAiB;AAcjB,IAAM,kBAAkB;AACxB,IAAM,kBAAkB;AAET,SAAR,kBACL,UAAoC,CAAC,GAC7B;AAvBV;AAwBE,QAAM,aAAS;AAAA,MACb,aAAQ,WAAR,mBAAgB,YAAW;AAAA,MAC3B,aAAQ,WAAR,mBAAgB,YAAW;AAAA,EAC7B;AACA,SAAO;AAAA,IACL,MAAM;AAAA,IACN,MAAM,UAAU,MAAM,IAAI;AA9B9B,UAAAA,KAAAC,KAAA;AA+BM,UAAI,OAAO,EAAE,GAAG;AACd,cAAM,UAAqF,CAAC,KAAK;AACjG,YAAI,eAAe,KAAK,EAAE,GAAG;AAC3B,kBAAQ,KAAK,YAAY;AAAA,QAC3B;AACA,cAAM,SAAS,MAAY,qBAAe,MAAM;AAAA,UAC9C,GAAG,QAAQ;AAAA,UACX,SAAS;AAAA,YACP,CAAC,aAAAC,SAAkB;AAAA,cACjB,SAAS,QAAQ;AAAA,cACjB,QAAQ,QAAQ;AAAA,cAChB,QAAQ;AAAA,YACV,CAAC;AAAA,YACD,KAAIF,MAAA,QAAQ,UAAR,gBAAAA,IAAe,YAAW,CAAC;AAAA,UACjC;AAAA,UACA,YAAY;AAAA,YACV,KAAIC,MAAA,QAAQ,UAAR,gBAAAA,IAAe,eAAc,CAAC;AAAA,YAClC,SAAS;AAAA,cACP,KAAI,mBAAQ,UAAR,mBAAe,eAAf,mBAA2B,YAAW,CAAC;AAAA,cAC3C,GAAG;AAAA,YACL;AAAA,UACF;AAAA,UACA,UAAU,YAAAE,QAAK,SAAS,EAAE;AAAA,UAC1B,KAAK;AAAA,UACL,YAAY;AAAA,UACZ,YAAY;AAAA,UACZ,SAAS;AAAA,UACT,gBAAgB;AAAA,QAClB,CAAC;AAED,YAAI,QAAQ;AACV,iBAAO;AAAA,YACL,MAAM,OAAO,QAAQ;AAAA,YACrB,KAAK,OAAO;AAAA,UACd;AAAA,QACF;AAAA,MACF;AACA,aAAO;AAAA,IACT;AAAA,EACF;AACF;",
6
- "names": ["_a", "_b", "solidStyledBabel", "path"]
4
+ "sourcesContent": ["import solidStyledUnplugin, { SolidStyledPluginOptions } from 'unplugin-solid-styled';\nimport { Plugin } from 'rollup';\n\nexport type { SolidStyledPluginFilter, SolidStyledPluginOptions } from 'unplugin-solid-styled';\n\nconst solidStyledPlugin = (\n solidStyledUnplugin.rollup as (options: SolidStyledPluginOptions) => Plugin\n);\n\nexport default solidStyledPlugin;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mCAA8D;AAK9D,IAAM,oBACJ,6BAAAA,QAAoB;AAGtB,IAAO,cAAQ;",
6
+ "names": ["solidStyledUnplugin"]
7
7
  }
@@ -1 +1 @@
1
- "use strict";var P=Object.create;var a=Object.defineProperty;var S=Object.getOwnPropertyDescriptor;var j=Object.getOwnPropertyNames;var O=Object.getPrototypeOf,N=Object.prototype.hasOwnProperty;var E=(e,l)=>{for(var r in l)a(e,r,{get:l[r],enumerable:!0})},m=(e,l,r,s)=>{if(l&&typeof l=="object"||typeof l=="function")for(let t of j(l))!N.call(e,t)&&t!==r&&a(e,t,{get:()=>l[t],enumerable:!(s=S(l,t))||s.enumerable});return e};var o=(e,l,r)=>(r=e!=null?P(O(e)):{},m(l||!e||!e.__esModule?a(r,"default",{value:e,enumerable:!0}):r,e)),D=e=>m(a({},"__esModule",{value:!0}),e);var U={};E(U,{default:()=>F});module.exports=D(U);var d=o(require("solid-styled/babel"),1),g=require("@rollup/pluginutils"),x=o(require("@babel/core"),1),y=o(require("path"),1),L="src/**/*.{jsx,tsx,ts,js,mjs,cjs}",T="node_modules/**/*.{jsx,tsx,ts,js,mjs,cjs}";function F(e={}){var r,s;let l=(0,g.createFilter)(((r=e.filter)==null?void 0:r.include)||L,((s=e.filter)==null?void 0:s.exclude)||T);return{name:"solid-styled",async transform(t,i){var u,f,p,b;if(l(i)){let c=["jsx"];/\.[mc]tsx?$/i.test(i)&&c.push("typescript");let n=await x.transformAsync(t,{...e.babel,plugins:[[d.default,{verbose:e.verbose,prefix:e.prefix,source:i}],...((u=e.babel)==null?void 0:u.plugins)||[]],parserOpts:{...((f=e.babel)==null?void 0:f.parserOpts)||{},plugins:[...((b=(p=e.babel)==null?void 0:p.parserOpts)==null?void 0:b.plugins)||[],...c]},filename:y.default.basename(i),ast:!1,sourceMaps:!0,configFile:!1,babelrc:!1,sourceFileName:i});if(n)return{code:n.code||"",map:n.map}}}}}
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var S=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,r=Object.prototype.hasOwnProperty;var y=(l,i)=>{for(var o in i)n(l,o,{get:i[o],enumerable:!0})},e=(l,i,o,d)=>{if(i&&typeof i=="object"||typeof i=="function")for(let t of S(i))!r.call(l,t)&&t!==o&&n(l,t,{get:()=>i[t],enumerable:!(d=s(i,t))||d.enumerable});return l};var P=(l,i,o)=>(o=l!=null?u(g(l)):{},e(i||!l||!l.__esModule?n(o,"default",{value:l,enumerable:!0}):o,l)),m=l=>e(n({},"__esModule",{value:!0}),l);var a={};y(a,{default:()=>O});module.exports=m(a);var p=P(require("unplugin-solid-styled"),1),f=p.default.rollup,O=f;
@@ -1,61 +1,8 @@
1
1
  // src/index.ts
2
- import solidStyledBabel from "solid-styled/babel";
3
- import { createFilter } from "@rollup/pluginutils";
4
- import * as babel from "@babel/core";
5
- import path from "path";
6
- var DEFAULT_INCLUDE = "src/**/*.{jsx,tsx,ts,js,mjs,cjs}";
7
- var DEFAULT_EXCLUDE = "node_modules/**/*.{jsx,tsx,ts,js,mjs,cjs}";
8
- function solidStyledPlugin(options = {}) {
9
- var _a, _b;
10
- const filter = createFilter(
11
- ((_a = options.filter) == null ? void 0 : _a.include) || DEFAULT_INCLUDE,
12
- ((_b = options.filter) == null ? void 0 : _b.exclude) || DEFAULT_EXCLUDE
13
- );
14
- return {
15
- name: "solid-styled",
16
- async transform(code, id) {
17
- var _a2, _b2, _c, _d;
18
- if (filter(id)) {
19
- const plugins = ["jsx"];
20
- if (/\.[mc]tsx?$/i.test(id)) {
21
- plugins.push("typescript");
22
- }
23
- const result = await babel.transformAsync(code, {
24
- ...options.babel,
25
- plugins: [
26
- [solidStyledBabel, {
27
- verbose: options.verbose,
28
- prefix: options.prefix,
29
- source: id
30
- }],
31
- ...((_a2 = options.babel) == null ? void 0 : _a2.plugins) || []
32
- ],
33
- parserOpts: {
34
- ...((_b2 = options.babel) == null ? void 0 : _b2.parserOpts) || {},
35
- plugins: [
36
- ...((_d = (_c = options.babel) == null ? void 0 : _c.parserOpts) == null ? void 0 : _d.plugins) || [],
37
- ...plugins
38
- ]
39
- },
40
- filename: path.basename(id),
41
- ast: false,
42
- sourceMaps: true,
43
- configFile: false,
44
- babelrc: false,
45
- sourceFileName: id
46
- });
47
- if (result) {
48
- return {
49
- code: result.code || "",
50
- map: result.map
51
- };
52
- }
53
- }
54
- return void 0;
55
- }
56
- };
57
- }
2
+ import solidStyledUnplugin from "unplugin-solid-styled";
3
+ var solidStyledPlugin = solidStyledUnplugin.rollup;
4
+ var src_default = solidStyledPlugin;
58
5
  export {
59
- solidStyledPlugin as default
6
+ src_default as default
60
7
  };
61
8
  //# sourceMappingURL=index.mjs.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/index.ts"],
4
- "sourcesContent": ["import solidStyledBabel from 'solid-styled/babel';\nimport { Plugin } from 'rollup';\nimport { createFilter, FilterPattern } from '@rollup/pluginutils';\nimport * as babel from '@babel/core';\nimport path from 'path';\n\nexport interface SolidStyledPluginFilter {\n include?: FilterPattern;\n exclude?: FilterPattern;\n}\n\nexport interface SolidStyledPluginOptions {\n verbose?: boolean;\n prefix?: string;\n filter?: SolidStyledPluginFilter;\n babel?: babel.TransformOptions;\n}\n\nconst DEFAULT_INCLUDE = 'src/**/*.{jsx,tsx,ts,js,mjs,cjs}';\nconst DEFAULT_EXCLUDE = 'node_modules/**/*.{jsx,tsx,ts,js,mjs,cjs}';\n\nexport default function solidStyledPlugin(\n options: SolidStyledPluginOptions = {},\n): Plugin {\n const filter = createFilter(\n options.filter?.include || DEFAULT_INCLUDE,\n options.filter?.exclude || DEFAULT_EXCLUDE,\n );\n return {\n name: 'solid-styled',\n async transform(code, id) {\n if (filter(id)) {\n const plugins: NonNullable<NonNullable<babel.TransformOptions['parserOpts']>['plugins']> = ['jsx'];\n if (/\\.[mc]tsx?$/i.test(id)) {\n plugins.push('typescript');\n }\n const result = await babel.transformAsync(code, {\n ...options.babel,\n plugins: [\n [solidStyledBabel, {\n verbose: options.verbose,\n prefix: options.prefix,\n source: id,\n }],\n ...(options.babel?.plugins || []),\n ],\n parserOpts: {\n ...(options.babel?.parserOpts || {}),\n plugins: [\n ...(options.babel?.parserOpts?.plugins || []),\n ...plugins,\n ],\n },\n filename: path.basename(id),\n ast: false,\n sourceMaps: true,\n configFile: false,\n babelrc: false,\n sourceFileName: id,\n });\n\n if (result) {\n return {\n code: result.code || '',\n map: result.map,\n };\n }\n }\n return undefined;\n },\n };\n}\n"],
5
- "mappings": ";AAAA,OAAO,sBAAsB;AAE7B,SAAS,oBAAmC;AAC5C,YAAY,WAAW;AACvB,OAAO,UAAU;AAcjB,IAAM,kBAAkB;AACxB,IAAM,kBAAkB;AAET,SAAR,kBACL,UAAoC,CAAC,GAC7B;AAvBV;AAwBE,QAAM,SAAS;AAAA,MACb,aAAQ,WAAR,mBAAgB,YAAW;AAAA,MAC3B,aAAQ,WAAR,mBAAgB,YAAW;AAAA,EAC7B;AACA,SAAO;AAAA,IACL,MAAM;AAAA,IACN,MAAM,UAAU,MAAM,IAAI;AA9B9B,UAAAA,KAAAC,KAAA;AA+BM,UAAI,OAAO,EAAE,GAAG;AACd,cAAM,UAAqF,CAAC,KAAK;AACjG,YAAI,eAAe,KAAK,EAAE,GAAG;AAC3B,kBAAQ,KAAK,YAAY;AAAA,QAC3B;AACA,cAAM,SAAS,MAAY,qBAAe,MAAM;AAAA,UAC9C,GAAG,QAAQ;AAAA,UACX,SAAS;AAAA,YACP,CAAC,kBAAkB;AAAA,cACjB,SAAS,QAAQ;AAAA,cACjB,QAAQ,QAAQ;AAAA,cAChB,QAAQ;AAAA,YACV,CAAC;AAAA,YACD,KAAID,MAAA,QAAQ,UAAR,gBAAAA,IAAe,YAAW,CAAC;AAAA,UACjC;AAAA,UACA,YAAY;AAAA,YACV,KAAIC,MAAA,QAAQ,UAAR,gBAAAA,IAAe,eAAc,CAAC;AAAA,YAClC,SAAS;AAAA,cACP,KAAI,mBAAQ,UAAR,mBAAe,eAAf,mBAA2B,YAAW,CAAC;AAAA,cAC3C,GAAG;AAAA,YACL;AAAA,UACF;AAAA,UACA,UAAU,KAAK,SAAS,EAAE;AAAA,UAC1B,KAAK;AAAA,UACL,YAAY;AAAA,UACZ,YAAY;AAAA,UACZ,SAAS;AAAA,UACT,gBAAgB;AAAA,QAClB,CAAC;AAED,YAAI,QAAQ;AACV,iBAAO;AAAA,YACL,MAAM,OAAO,QAAQ;AAAA,YACrB,KAAK,OAAO;AAAA,UACd;AAAA,QACF;AAAA,MACF;AACA,aAAO;AAAA,IACT;AAAA,EACF;AACF;",
6
- "names": ["_a", "_b"]
4
+ "sourcesContent": ["import solidStyledUnplugin, { SolidStyledPluginOptions } from 'unplugin-solid-styled';\nimport { Plugin } from 'rollup';\n\nexport type { SolidStyledPluginFilter, SolidStyledPluginOptions } from 'unplugin-solid-styled';\n\nconst solidStyledPlugin = (\n solidStyledUnplugin.rollup as (options: SolidStyledPluginOptions) => Plugin\n);\n\nexport default solidStyledPlugin;\n"],
5
+ "mappings": ";AAAA,OAAO,yBAAuD;AAK9D,IAAM,oBACJ,oBAAoB;AAGtB,IAAO,cAAQ;",
6
+ "names": []
7
7
  }
@@ -1 +1 @@
1
- import c from"solid-styled/babel";import{createFilter as m}from"@rollup/pluginutils";import*as f from"@babel/core";import d from"path";var g="src/**/*.{jsx,tsx,ts,js,mjs,cjs}",x="node_modules/**/*.{jsx,tsx,ts,js,mjs,cjs}";function y(e={}){var t,s;let p=m(((t=e.filter)==null?void 0:t.include)||g,((s=e.filter)==null?void 0:s.exclude)||x);return{name:"solid-styled",async transform(b,l){var i,a,n,o;if(p(l)){let u=["jsx"];/\.[mc]tsx?$/i.test(l)&&u.push("typescript");let r=await f.transformAsync(b,{...e.babel,plugins:[[c,{verbose:e.verbose,prefix:e.prefix,source:l}],...((i=e.babel)==null?void 0:i.plugins)||[]],parserOpts:{...((a=e.babel)==null?void 0:a.parserOpts)||{},plugins:[...((o=(n=e.babel)==null?void 0:n.parserOpts)==null?void 0:o.plugins)||[],...u]},filename:d.basename(l),ast:!1,sourceMaps:!0,configFile:!1,babelrc:!1,sourceFileName:l});if(r)return{code:r.code||"",map:r.map}}}}}export{y as default};
1
+ import l from"unplugin-solid-styled";var i=l.rollup,n=i;export{n as default};
@@ -1,14 +1,5 @@
1
+ import { SolidStyledPluginOptions } from 'unplugin-solid-styled';
1
2
  import { Plugin } from 'rollup';
2
- import { FilterPattern } from '@rollup/pluginutils';
3
- import * as babel from '@babel/core';
4
- export interface SolidStyledPluginFilter {
5
- include?: FilterPattern;
6
- exclude?: FilterPattern;
7
- }
8
- export interface SolidStyledPluginOptions {
9
- verbose?: boolean;
10
- prefix?: string;
11
- filter?: SolidStyledPluginFilter;
12
- babel?: babel.TransformOptions;
13
- }
14
- export default function solidStyledPlugin(options?: SolidStyledPluginOptions): Plugin;
3
+ export type { SolidStyledPluginFilter, SolidStyledPluginOptions } from 'unplugin-solid-styled';
4
+ declare const solidStyledPlugin: (options: SolidStyledPluginOptions) => Plugin;
5
+ export default solidStyledPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup-plugin-solid-styled",
3
- "version": "0.8.2",
3
+ "version": "0.9.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -15,23 +15,22 @@
15
15
  "pridepack"
16
16
  ],
17
17
  "devDependencies": {
18
- "@types/babel__core": "^7.20.0",
19
18
  "@types/node": "^18.15.3",
20
19
  "eslint": "^8.36.0",
21
20
  "eslint-config-lxsmnsyc": "^0.5.1",
22
21
  "pridepack": "2.4.2",
23
22
  "rollup": "^3.5.1",
24
- "solid-styled": "0.8.2",
23
+ "solid-styled": "0.9.0",
25
24
  "tslib": "^2.5.0",
26
25
  "typescript": "^4.9.5"
27
26
  },
28
27
  "dependencies": {
29
- "@babel/core": "^7.21.3",
30
- "@rollup/pluginutils": "^5.0.2"
28
+ "@rollup/pluginutils": "^5.0.2",
29
+ "unplugin-solid-styled": "0.9.0"
31
30
  },
32
31
  "peerDependencies": {
33
32
  "rollup": "^3",
34
- "solid-styled": ">=0.7"
33
+ "solid-styled": "^0.8"
35
34
  },
36
35
  "scripts": {
37
36
  "prepublishOnly": "pridepack clean && pridepack build",
@@ -41,8 +40,7 @@
41
40
  "clean": "pridepack clean",
42
41
  "watch": "pridepack watch",
43
42
  "start": "pridepack start",
44
- "dev": "pridepack dev",
45
- "test": "vitest"
43
+ "dev": "pridepack dev"
46
44
  },
47
45
  "description": "Rollup plugin for solid-styled",
48
46
  "repository": {
@@ -75,5 +73,5 @@
75
73
  "typesVersions": {
76
74
  "*": {}
77
75
  },
78
- "gitHead": "d043eec3dbc1f1d336942d474cb969f94f88dfd1"
76
+ "gitHead": "d5f189deeca2071f946f8090875aebe442a37f23"
79
77
  }