@plasmicpkgs/plasmic-mailchimp 0.0.1 → 0.0.3
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/dist/plasmic-mailchimp.cjs.development.js +3 -5
- package/dist/plasmic-mailchimp.cjs.development.js.map +1 -1
- package/dist/plasmic-mailchimp.cjs.production.min.js +1 -1
- package/dist/plasmic-mailchimp.cjs.production.min.js.map +1 -1
- package/dist/plasmic-mailchimp.esm.js +3 -5
- package/dist/plasmic-mailchimp.esm.js.map +1 -1
- package/package.json +5 -8
|
@@ -17,7 +17,7 @@ function ensure(x) {
|
|
|
17
17
|
}
|
|
18
18
|
var modulePath = "@plasmicpkgs/plasmic-mailchimp";
|
|
19
19
|
var MailchimpSignupFormMeta = {
|
|
20
|
-
name: "
|
|
20
|
+
name: "hostless-mailchimp-signup-form",
|
|
21
21
|
displayName: "Mailchimp Signup Form",
|
|
22
22
|
importName: "MailchimpSignupForm",
|
|
23
23
|
importPath: modulePath,
|
|
@@ -29,7 +29,7 @@ var MailchimpSignupFormMeta = {
|
|
|
29
29
|
displayName: "URL",
|
|
30
30
|
description: "Learn how to get your form url (\"https://mailchimp.com/help/host-your-own-signup-forms/\")",
|
|
31
31
|
defaultValue: "http://eepurl.com/ic43yL",
|
|
32
|
-
helpText:
|
|
32
|
+
helpText: "You can learn how.(https://mailchimp.com/help/share-your-signup-form/)"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
};
|
|
@@ -59,9 +59,7 @@ function registerAll(loader) {
|
|
|
59
59
|
registerComponent(Component, defaultMeta);
|
|
60
60
|
}
|
|
61
61
|
};
|
|
62
|
-
|
|
63
|
-
_registerComponent(MailchimpSignupForm, MailchimpSignupFormMeta);
|
|
64
|
-
}
|
|
62
|
+
_registerComponent(MailchimpSignupForm, MailchimpSignupFormMeta);
|
|
65
63
|
}
|
|
66
64
|
|
|
67
65
|
exports.MailchimpSignupForm = MailchimpSignupForm;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plasmic-mailchimp.cjs.development.js","sources":["../src/mailchimp.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-mailchimp\";\n\ninterface MailchimpSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const MailchimpSignupFormMeta: ComponentMeta<MailchimpSignupFormProps> =\n{\n
|
|
1
|
+
{"version":3,"file":"plasmic-mailchimp.cjs.development.js","sources":["../src/mailchimp.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-mailchimp\";\n\ninterface MailchimpSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const MailchimpSignupFormMeta: ComponentMeta<MailchimpSignupFormProps> =\n {\n name: \"hostless-mailchimp-signup-form\",\n displayName: \"Mailchimp Signup Form\",\n importName: \"MailchimpSignupForm\",\n importPath: modulePath,\n providesData: true,\n description:\n \"Shows a sign up form to users for subscribe to your newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Learn how to get your form url (\"https://mailchimp.com/help/host-your-own-signup-forms/\")`,\n defaultValue: \"http://eepurl.com/ic43yL\",\n helpText:\n \"You can learn how.(https://mailchimp.com/help/share-your-signup-form/)\",\n },\n },\n };\n\nexport function MailchimpSignupForm({\n className,\n url,\n}: MailchimpSignupFormProps) {\n if (!url) {\n return <div>Please specify URL</div>;\n }\n\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport { MailchimpSignupForm, MailchimpSignupFormMeta } from \"./mailchimp\";\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n _registerComponent(MailchimpSignupForm, MailchimpSignupFormMeta);\n}\nexport * from \"./mailchimp\";\n"],"names":["ensure","x","undefined","Error","modulePath","MailchimpSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","MailchimpSignupForm","_ref","className","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;;;;;;;SAIgBA,MAAMA,CAAIC,CAAuB;EAC/C,IAAIA,CAAC,KAAK,IAAI,IAAIA,CAAC,KAAKC,SAAS,EAAE;IACjC;IACA,MAAM,IAAIC,KAAK,sCAAsC,CAAC;GACvD,MAAM;IACL,OAAOF,CAAC;;AAEZ;AAEA,IAAMG,UAAU,GAAG,gCAAgC;IAOtCC,uBAAuB,GAClC;EACEC,IAAI,EAAE,gCAAgC;EACtCC,WAAW,EAAE,uBAAuB;EACpCC,UAAU,EAAE,qBAAqB;EACjCC,UAAU,EAAEL,UAAU;EACtBM,YAAY,EAAE,IAAI;EAClBC,WAAW,EACT,gEAAgE;EAClEC,KAAK,EAAE;IACLC,GAAG,EAAE;MACHC,IAAI,EAAE,QAAQ;MACdP,WAAW,EAAE,KAAK;MAClBI,WAAW,+FAA6F;MACxGI,YAAY,EAAE,0BAA0B;MACxCC,QAAQ,EACN;;;;SAKMC,mBAAmBA,CAAAC,IAAA;MACjCC,SAAS,GAAAD,IAAA,CAATC,SAAS;IACTN,GAAG,GAAAK,IAAA,CAAHL,GAAG;EAEH,IAAI,CAACA,GAAG,EAAE;IACR,OAAOO,sDAA6B;;EAGtC,OACEA;IACEC,GAAG,EAAER,GAAG;IACRS,KAAK,EAAC,MAAM;IACZC,WAAW,EAAC,GAAG;IACfC,YAAY,EAAE,CAAC;IACfC,SAAS,EAAC,IAAI;IACdC,WAAW,EAAE,CAAC;IACdC,MAAM,EAAC,OAAO;IACdR,SAAS,EAAEA;IACX;AAEN;;SCvDgBS,WAAWA,CAACC,MAG3B;EACC,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,CACtBC,SAAY,EACZC,WAAmD;IAEnD,IAAIH,MAAM,EAAE;MACVA,MAAM,CAACI,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;KACjD,MAAM;MACLC,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;;GAE5C;EAEDF,kBAAkB,CAACb,mBAAmB,EAAEZ,uBAAuB,CAAC;AAClE;;;;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";function e(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var r=e(require("@plasmicapp/host/registerComponent")),i=e(require("react")),t={name:"
|
|
1
|
+
"use strict";function e(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var r=e(require("@plasmicapp/host/registerComponent")),i=e(require("react")),t={name:"hostless-mailchimp-signup-form",displayName:"Mailchimp Signup Form",importName:"MailchimpSignupForm",importPath:"@plasmicpkgs/plasmic-mailchimp",providesData:!0,description:"Shows a sign up form to users for subscribe to your newsletter",props:{url:{type:"string",displayName:"URL",description:'Learn how to get your form url ("https://mailchimp.com/help/host-your-own-signup-forms/")',defaultValue:"http://eepurl.com/ic43yL",helpText:"You can learn how.(https://mailchimp.com/help/share-your-signup-form/)"}}};function o(e){var r=e.url;return r?i.createElement("iframe",{src:r,width:"100%",frameBorder:"0",marginHeight:0,scrolling:"no",marginWidth:0,height:"600px",className:e.className}):i.createElement("div",null,"Please specify URL")}exports.MailchimpSignupForm=o,exports.MailchimpSignupFormMeta=t,exports.ensure=function(e){if(null==e)throw new Error("Value must not be undefined or null");return e},exports.registerAll=function(e){var i,s;i=o,s=t,e?e.registerComponent(i,s):r(i,s)};
|
|
2
2
|
//# sourceMappingURL=plasmic-mailchimp.cjs.production.min.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plasmic-mailchimp.cjs.production.min.js","sources":["../src/mailchimp.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-mailchimp\";\n\ninterface MailchimpSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const MailchimpSignupFormMeta: ComponentMeta<MailchimpSignupFormProps> =\n{\n
|
|
1
|
+
{"version":3,"file":"plasmic-mailchimp.cjs.production.min.js","sources":["../src/mailchimp.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-mailchimp\";\n\ninterface MailchimpSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const MailchimpSignupFormMeta: ComponentMeta<MailchimpSignupFormProps> =\n {\n name: \"hostless-mailchimp-signup-form\",\n displayName: \"Mailchimp Signup Form\",\n importName: \"MailchimpSignupForm\",\n importPath: modulePath,\n providesData: true,\n description:\n \"Shows a sign up form to users for subscribe to your newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Learn how to get your form url (\"https://mailchimp.com/help/host-your-own-signup-forms/\")`,\n defaultValue: \"http://eepurl.com/ic43yL\",\n helpText:\n \"You can learn how.(https://mailchimp.com/help/share-your-signup-form/)\",\n },\n },\n };\n\nexport function MailchimpSignupForm({\n className,\n url,\n}: MailchimpSignupFormProps) {\n if (!url) {\n return <div>Please specify URL</div>;\n }\n\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport { MailchimpSignupForm, MailchimpSignupFormMeta } from \"./mailchimp\";\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n _registerComponent(MailchimpSignupForm, MailchimpSignupFormMeta);\n}\nexport * from \"./mailchimp\";\n"],"names":["MailchimpSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","MailchimpSignupForm","_ref","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","className","x","Error","loader","Component","defaultMeta","registerComponent"],"mappings":"uNAoBaA,EACX,CACEC,KAAM,iCACNC,YAAa,wBACbC,WAAY,sBACZC,WAZe,iCAafC,cAAc,EACdC,YACE,iEACFC,MAAO,CACLC,IAAK,CACHC,KAAM,SACNP,YAAa,MACbI,wGACAI,aAAc,2BACdC,SACE,qFAKMC,EAAmBC,OAEjCL,EAAGK,EAAHL,IAEA,OAAKA,EAKHM,0BACEC,IAAKP,EACLQ,MAAM,OACNC,YAAY,IACZC,aAAc,EACdC,UAAU,KACVC,YAAa,EACbC,OAAO,QACPC,UAhBKT,EAATS,YAISR,yIA1CeS,GACxB,GAAIA,MAAAA,EAEF,MAAM,IAAIC,6CAEV,OAAOD,gCCHiBE,GAI1B,IACEC,EACAC,EADAD,EAUiBd,EATjBe,EASsC3B,EAPlCyB,EACFA,EAAOG,kBAAkBF,EAAWC,GAEpCC,EAAkBF,EAAWC"}
|
|
@@ -11,7 +11,7 @@ function ensure(x) {
|
|
|
11
11
|
}
|
|
12
12
|
var modulePath = "@plasmicpkgs/plasmic-mailchimp";
|
|
13
13
|
var MailchimpSignupFormMeta = {
|
|
14
|
-
name: "
|
|
14
|
+
name: "hostless-mailchimp-signup-form",
|
|
15
15
|
displayName: "Mailchimp Signup Form",
|
|
16
16
|
importName: "MailchimpSignupForm",
|
|
17
17
|
importPath: modulePath,
|
|
@@ -23,7 +23,7 @@ var MailchimpSignupFormMeta = {
|
|
|
23
23
|
displayName: "URL",
|
|
24
24
|
description: "Learn how to get your form url (\"https://mailchimp.com/help/host-your-own-signup-forms/\")",
|
|
25
25
|
defaultValue: "http://eepurl.com/ic43yL",
|
|
26
|
-
helpText:
|
|
26
|
+
helpText: "You can learn how.(https://mailchimp.com/help/share-your-signup-form/)"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
};
|
|
@@ -53,9 +53,7 @@ function registerAll(loader) {
|
|
|
53
53
|
registerComponent(Component, defaultMeta);
|
|
54
54
|
}
|
|
55
55
|
};
|
|
56
|
-
|
|
57
|
-
_registerComponent(MailchimpSignupForm, MailchimpSignupFormMeta);
|
|
58
|
-
}
|
|
56
|
+
_registerComponent(MailchimpSignupForm, MailchimpSignupFormMeta);
|
|
59
57
|
}
|
|
60
58
|
|
|
61
59
|
export { MailchimpSignupForm, MailchimpSignupFormMeta, ensure, registerAll };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plasmic-mailchimp.esm.js","sources":["../src/mailchimp.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-mailchimp\";\n\ninterface MailchimpSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const MailchimpSignupFormMeta: ComponentMeta<MailchimpSignupFormProps> =\n{\n
|
|
1
|
+
{"version":3,"file":"plasmic-mailchimp.esm.js","sources":["../src/mailchimp.tsx","../src/index.tsx"],"sourcesContent":["import { ComponentMeta } from \"@plasmicapp/host\";\n\nimport React from \"react\";\n\nexport function ensure<T>(x: T | null | undefined): T {\n if (x === null || x === undefined) {\n debugger;\n throw new Error(`Value must not be undefined or null`);\n } else {\n return x;\n }\n}\n\nconst modulePath = \"@plasmicpkgs/plasmic-mailchimp\";\n\ninterface MailchimpSignupFormProps {\n className?: string;\n url?: string;\n}\n\nexport const MailchimpSignupFormMeta: ComponentMeta<MailchimpSignupFormProps> =\n {\n name: \"hostless-mailchimp-signup-form\",\n displayName: \"Mailchimp Signup Form\",\n importName: \"MailchimpSignupForm\",\n importPath: modulePath,\n providesData: true,\n description:\n \"Shows a sign up form to users for subscribe to your newsletter\",\n props: {\n url: {\n type: \"string\",\n displayName: \"URL\",\n description: `Learn how to get your form url (\"https://mailchimp.com/help/host-your-own-signup-forms/\")`,\n defaultValue: \"http://eepurl.com/ic43yL\",\n helpText:\n \"You can learn how.(https://mailchimp.com/help/share-your-signup-form/)\",\n },\n },\n };\n\nexport function MailchimpSignupForm({\n className,\n url,\n}: MailchimpSignupFormProps) {\n if (!url) {\n return <div>Please specify URL</div>;\n }\n\n return (\n <iframe\n src={url}\n width=\"100%\"\n frameBorder=\"0\"\n marginHeight={0}\n scrolling=\"no\"\n marginWidth={0}\n height=\"600px\"\n className={className}\n />\n );\n}\n","import registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport { MailchimpSignupForm, MailchimpSignupFormMeta } from \"./mailchimp\";\n\nexport function registerAll(loader?: {\n registerComponent: typeof registerComponent;\n registerGlobalContext: typeof registerGlobalContext;\n}) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n\n _registerComponent(MailchimpSignupForm, MailchimpSignupFormMeta);\n}\nexport * from \"./mailchimp\";\n"],"names":["ensure","x","undefined","Error","modulePath","MailchimpSignupFormMeta","name","displayName","importName","importPath","providesData","description","props","url","type","defaultValue","helpText","MailchimpSignupForm","_ref","className","React","src","width","frameBorder","marginHeight","scrolling","marginWidth","height","registerAll","loader","_registerComponent","Component","defaultMeta","registerComponent"],"mappings":";;;SAIgBA,MAAMA,CAAIC,CAAuB;EAC/C,IAAIA,CAAC,KAAK,IAAI,IAAIA,CAAC,KAAKC,SAAS,EAAE;IACjC;IACA,MAAM,IAAIC,KAAK,sCAAsC,CAAC;GACvD,MAAM;IACL,OAAOF,CAAC;;AAEZ;AAEA,IAAMG,UAAU,GAAG,gCAAgC;IAOtCC,uBAAuB,GAClC;EACEC,IAAI,EAAE,gCAAgC;EACtCC,WAAW,EAAE,uBAAuB;EACpCC,UAAU,EAAE,qBAAqB;EACjCC,UAAU,EAAEL,UAAU;EACtBM,YAAY,EAAE,IAAI;EAClBC,WAAW,EACT,gEAAgE;EAClEC,KAAK,EAAE;IACLC,GAAG,EAAE;MACHC,IAAI,EAAE,QAAQ;MACdP,WAAW,EAAE,KAAK;MAClBI,WAAW,+FAA6F;MACxGI,YAAY,EAAE,0BAA0B;MACxCC,QAAQ,EACN;;;;SAKMC,mBAAmBA,CAAAC,IAAA;MACjCC,SAAS,GAAAD,IAAA,CAATC,SAAS;IACTN,GAAG,GAAAK,IAAA,CAAHL,GAAG;EAEH,IAAI,CAACA,GAAG,EAAE;IACR,OAAOO,sDAA6B;;EAGtC,OACEA;IACEC,GAAG,EAAER,GAAG;IACRS,KAAK,EAAC,MAAM;IACZC,WAAW,EAAC,GAAG;IACfC,YAAY,EAAE,CAAC;IACfC,SAAS,EAAC,IAAI;IACdC,WAAW,EAAE,CAAC;IACdC,MAAM,EAAC,OAAO;IACdR,SAAS,EAAEA;IACX;AAEN;;SCvDgBS,WAAWA,CAACC,MAG3B;EACC,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,CACtBC,SAAY,EACZC,WAAmD;IAEnD,IAAIH,MAAM,EAAE;MACVA,MAAM,CAACI,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;KACjD,MAAM;MACLC,iBAAiB,CAACF,SAAS,EAAEC,WAAW,CAAC;;GAE5C;EAEDF,kBAAkB,CAACb,mBAAmB,EAAEZ,uBAAuB,CAAC;AAClE;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/plasmic-mailchimp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Plasmic Mailchimp components.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"start": "tsdx watch",
|
|
16
16
|
"build": "tsdx build",
|
|
17
|
-
"test": "yarn --cwd=../.. test --passWithNoTests",
|
|
17
|
+
"test": "TEST_CWD=`pwd` yarn --cwd=../.. test --passWithNoTests",
|
|
18
18
|
"lint": "tsdx lint",
|
|
19
|
-
"
|
|
19
|
+
"prepublishOnly": "npm run build",
|
|
20
20
|
"size": "size-limit",
|
|
21
21
|
"analyze": "size-limit --why"
|
|
22
22
|
},
|
|
@@ -34,17 +34,14 @@
|
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@plasmicapp/host": "
|
|
38
|
-
"@plasmicapp/query": "^0.1.61",
|
|
39
|
-
"@size-limit/preset-small-lib": "^7.0.8",
|
|
37
|
+
"@plasmicapp/host": "1.0.225",
|
|
40
38
|
"@types/react": "^17.0.43",
|
|
41
39
|
"@types/react-dom": "^17.0.14",
|
|
42
40
|
"husky": "^7.0.4",
|
|
43
41
|
"react": "^18.0.0",
|
|
44
42
|
"react-dom": "^18.0.0",
|
|
45
|
-
"size-limit": "^7.0.8",
|
|
46
43
|
"tsdx": "^0.14.1",
|
|
47
44
|
"tslib": "^2.3.1"
|
|
48
45
|
},
|
|
49
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "400da4e813c2876ed9d2ada28ef265afd30c69d5"
|
|
50
47
|
}
|