@moneko/core 3.40.0 → 3.40.2

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/lib/bin/build.mjs CHANGED
@@ -1 +1 @@
1
- import{join as o}from"node:path";import{argv as t}from"node:process";import{convert as e}from"@moneko/convert";import{ink as s,println as i,removeDir as r}from"@moneko/utils";import m from"../commom/setup-env.mjs";import{cwd as n,swcCachePath as l}from"./utils/config.mjs";import{getSwcOption as c}from"./utils/setup-swcrc.mjs";import{lesscCommonjs as p}from"./lessc.mjs";import d from"./tsc.mjs";async function u(){let u=t[3],a=t[4],f=t.slice(5);u||(i(s(`type: 无效值 ${s(u,"245")}`,"red")),process.exit(1));let j=!f.includes("no-docs"),y=!f.includes("no-lib"),x=!f.includes("no-es"),b=!f.includes("no-dts"),g=f.filter(o=>!["no-docs","no-es","no-lib"].includes(o));if(await m("production",u,a,g),"library"===u){let{CONFIG:t}=await import("../config.mjs"),s="swc"===t.dts,i=[y&&{type:"commonjs",dir:"lib",msg:"Convert to CommonJS"},x&&{type:"es6",dir:"es",msg:"Convert to ES Module"}].filter(Boolean);for(let t=0,m=i.length;t<m;t++){r(o(n,`./${i[t].dir}`));let m=c(a);"es6"===i[t].type&&(m.jsc.target="es2015"),m.jsc.experimental.emitIsolatedDts=b&&s,m.jsc.experimental.cacheRoot=l,m.module.type=i[t].type,e({outDir:i[t].dir,inputDir:"components",ignore:[/^.*\/__*__\//,/\.test\.(js|ts)x?$/,/\.DS_Store/,/\.mdx?$/,/^.*\/examples\//,/\.d\.(cj|mj|j|t|ct|mt)sx?$/],options:m}),"commonjs"===i[t].type&&p(),b&&!s&&d(i[t].dir)}}("library"!==u||j&&"library"===u)&&import("../build.mjs")}export default u;
1
+ import{join as o}from"node:path";import{argv as t}from"node:process";import{convert as e}from"@moneko/convert";import{ink as r,println as s,removeDir as i}from"@moneko/utils";import m from"../commom/setup-env.mjs";import{cwd as n,swcCachePath as c}from"./utils/config.mjs";import{getSwcOption as l}from"./utils/setup-swcrc.mjs";import{lesscCommonjs as p}from"./lessc.mjs";import d from"./tsc.mjs";async function a(){let a=t[3],f=t[4],u=t.slice(5);a||(s(r(`type: 无效值 ${r(a,"245")}`,"red")),process.exit(1));let j=!u.includes("no-docs"),y=!u.includes("no-lib"),x=!u.includes("no-es"),b=!u.includes("no-dts"),g=u.filter(o=>!["no-docs","no-es","no-lib"].includes(o));if(await m("production",a,f,g),"library"===a){let{CONFIG:t}=await import("../config.mjs"),r="swc"===t.dts,s=[y&&{type:"commonjs",dir:"lib",msg:"Convert to CommonJS"},x&&{type:"es6",dir:"es",msg:"Convert to ES Module"}].filter(Boolean);for(let t=0,m=s.length;t<m;t++){i(o(n,`./${s[t].dir}`));let m=l(f);"es6"===s[t].type&&(m.jsc.target="es2015"),m.jsc.experimental.emitIsolatedDts=b&&r,m.jsc.experimental.cacheRoot=c,m.module.type=s[t].type,e({outDir:s[t].dir,inputDir:"components",ignore:[/^.*\/__*__\//,/\.test\.(js|ts)x?$/,/\.DS_Store/,/\.mdx?$/,/^.*\/examples\//,/\.d\.(cj|mj|j|t|ct|mt)sx?$/],options:m}),"commonjs"===s[t].type&&p(),b&&!r&&d(s[t].dir)}}if("library"!==a||j&&"library"===a)try{await import("../build.mjs")}catch(o){console.error(Error(o)),process.exit(1)}}export default a;
package/lib/bin/start.mjs CHANGED
@@ -1 +1 @@
1
- import{argv as e}from"node:process";import{ink as o,println as t}from"@moneko/utils";import m from"../commom/setup-env.mjs";async function i(){let i=e[3],r=e[4],p=e.slice(5);i||(t(o(`type: 无效值 ${o(i,"245")}`,"red")),process.exit(1));let s=p.indexOf("no-verify");-1!==s&&p.splice(s,1),await m("development",i,r,p),import("../dev.mjs")}export default i;
1
+ import{argv as e}from"node:process";import{ink as o,println as r}from"@moneko/utils";import t from"../commom/setup-env.mjs";async function i(){let i=e[3],m=e[4],s=e.slice(5);i||(r(o(`type: 无效值 ${o(i,"245")}`,"red")),process.exit(1));let p=s.indexOf("no-verify");-1!==p&&s.splice(p,1),await t("development",i,m,s);try{await import("../dev.mjs")}catch(e){console.error(Error(e)),process.exit(1)}}export default i;
@@ -1,5 +1,5 @@
1
1
  import { exec, type ExecException, type PromiseWithChild } from 'node:child_process';
2
- import { join } from 'node:path';
2
+ import { join, relative } from 'node:path';
3
3
  import { platform } from 'node:process';
4
4
  import { promisify } from 'node:util';
5
5
  type ExecPromise = (command: string) => PromiseWithChild<{
package/lib/commom/ca.mjs CHANGED
@@ -1 +1 @@
1
- import{exec as t}from"node:child_process";import{join as e}from"node:path";import{platform as r}from"node:process";import{promisify as i}from"node:util";let o=i(t);import{fileExists as a,loadFile as n,println as l,saveFile as c}from"@moneko/utils";import{createCA as s,createCert as m}from"mkcert";import u from"./log.mjs";import d from"./paths.mjs";async function f(t){try{if("darwin"===r){let{stdout:e}=await o(`security find-certificate -c "${t}" -a`);return e.length>0}if("win32"===r){let{stdout:e}=await o(`certutil -store -user Root | findstr /C:"${t}"`);return e.length>0}}catch(t){u(t)}return!1}function p(t,e,r){if(t&&!r.includes("already exists")){u(t);return}}export function installCA(e){return"darwin"===r?t(`security add-trusted-cert -d -r trustRoot -k "$HOME/Library/Keychains/login.keychain-db" "${e}"`,p):"win32"===r?t(`certutil -addstore -user "Root" "${e}"`,p):void l(`⚠️ 暂不支持自动安装 CA 的平台: ${r}`)}export async function setupCert(t="localhost",r=!0){let i=e(d.CA_DIR,"root_cert.pem"),o=e(d.CA_DIR,"root_key.pem"),l="Local Development CA - DO NOT TRUST";if(!a(i)||!a(o)){let t=await s({organization:l,validity:365,countryCode:"CN",state:"Hunan",locality:"Changsha"});await Promise.all([c(i,t.cert),c(o,t.key)])}r&&!await f(l)&&installCA(i);let u=e(d.CA_DIR,`${t}_cert.pem`),p=e(d.CA_DIR,`${t}_key.pem`);if(!a(u)||!a(p)){let e=await Promise.all([n(i),n(o)]),r=await m({ca:{cert:e[0],key:e[1]},domains:[...new Set([t,"localhost","127.0.0.1"].filter(Boolean))],organization:l,validity:365});await Promise.all([c(u,r.cert),c(p,r.key)])}let y=await Promise.all([n(u),n(p)]);return{cert:y[0],key:y[1]}}
1
+ import{exec as t}from"node:child_process";import{join as e,relative as r}from"node:path";import{platform as o}from"node:process";import{promisify as i}from"node:util";let a=i(t);import{fileExists as n,loadFile as l,println as c,saveFile as s}from"@moneko/utils";import{createCA as m,createCert as p}from"mkcert";import u from"./log.mjs";import d from"./paths.mjs";async function f(t){try{if("darwin"===o){let{stdout:e}=await a(`security find-certificate -c "${t}" -a`);return e.length>0}if("win32"===o){let{stdout:e}=await a(`certutil -store -user Root | findstr /C:"${t}"`);return e.length>0}}catch(t){u(t)}return!1}function y(t,e,r){if(t&&!r.includes("already exists")){u(t);return}}export function installCA(e){return"darwin"===o?t(`security add-trusted-cert -d -r trustRoot -k "$HOME/Library/Keychains/login.keychain-db" "${e}"`,y):"win32"===o?t(`certutil -addstore -user "Root" "${e}"`,y):void c(`⚠️ 暂不支持自动安装 CA 的平台: ${o}`)}export async function setupCert(t="localhost",o=!0){let i=r(d.programPath,`${d.corePath}/pem/root-cert.pem`),a=r(d.programPath,`${d.corePath}/pem/root-key.pem`),c="Local Development CA - DO NOT TRUST";if(!n(i)||!n(a)){let t=await m({organization:c,validity:365,countryCode:"CN",state:"Hunan",locality:"Changsha"});await Promise.all([s(i,t.cert),s(a,t.key)])}o&&!await f(c)&&installCA(i);let u=e(d.CA_DIR,`${t}_cert.pem`),y=e(d.CA_DIR,`${t}_key.pem`);if(!n(u)||!n(y)){let e=await Promise.all([l(i),l(a)]),r=await p({ca:{cert:e[0],key:e[1]},domains:[...new Set([t,"localhost","127.0.0.1"].filter(Boolean))],organization:c,validity:365});await Promise.all([s(u,r.cert),s(y,r.key)])}let h=await Promise.all([l(u),l(y)]);return{cert:h[0],key:h[1]}}
package/lib/common.mjs CHANGED
@@ -1 +1 @@
1
- import{extname as e,join as t,resolve as o}from"node:path";import s,{config_files as n,CUSTOMCONFIG as a}from"./commom/paths.mjs";import i from"./commom/require.mjs";import r from"./plugin/override-resolve.mjs";import{isObject as l,node_modules as m,resolveProgram as p}from"./utils/index.mjs";import{exampleModuleName as c}from"./vm/example.mjs";import u from"./vm/info.mjs";import{CONFIG as h,PUBLICPATH as f}from"./config.mjs";import d from"./plugins.config.mjs";import{isDev as g,isLibrary as b,NODE_ENV as y,packageJson as j}from"./process-env.mjs";export const outputConfig={path:p(b?"docs":"dist"),filename:"js/[name].[contenthash].bundle.js",chunkFilename:"js/[contenthash].chunk.js",assetModuleFilename:t=>{let o=e(t.filename||"").substring(1);return`assets/${o}/[hash][ext]`},library:{name:`${u.projectName}`,type:"umd",umdNamedDefine:!0},globalObject:"self",chunkLoadingGlobal:`webpackJsonp_${j.name}`,pathinfo:g,clean:!0,publicPath:f,asyncChunks:!0,charset:!0,iife:!0,crossOriginLoading:"anonymous",enabledWasmLoadingTypes:["fetch"],hotUpdateChunkFilename:"[id].[fullhash].hot.js",hotUpdateMainFilename:"[runtime].[fullhash].hot.json"};let v={main:[m("@app/entry")]};if(h.polyfill&&v.main.unshift(t(s.corePath,"./polyfills/replace-children.mjs")),g&&h.refresh&&h.env.injectRemoteReactRefresh&&v.main.unshift(i.resolve("@moneko/react/lib/injectRemoteReactRefresh.js")),h.entry&&("string"==typeof h.entry?v={main:[h.entry]}:Object.keys(h.entry)&&(v=Object.assign(v,h.entry))),"string"==typeof v.main&&(v.main=[v.main]),h.output){if("string"==typeof h.output)outputConfig.path=h.output;else if(Object.keys(h.output)){let e=h.output,t={...outputConfig.library};Object.assign(outputConfig,e),"object"==typeof h.output&&e.library&&(outputConfig.library=Object.assign(t,e.library))}}let C={type:"filesystem",allowCollectingMemory:!0,cacheDirectory:s.webpackCachePath,memoryCacheUnaffected:!0,name:`.${[a,y].filter(Boolean).join("-")}`,version:`${j.version}`,buildDependencies:{config:n}};!1===h.cache?C=!1:l(h.cache)&&(C=Object.assign(C,h.cache));export const commonConfig={name:"client",target:"web",devtool:h.devtool,entry:v,mode:g?"development":"production",stats:"errors-only",cache:C,snapshot:{immutablePaths:[/node_modules\/(?!(@app|@moneko)\/)/],managedPaths:[/^@app\/.+/,/^@moneko\/.+/],buildDependencies:{timestamp:!0,hash:!0}},infrastructureLogging:{level:"error"},externalsPresets:h.externalsPresets,plugins:d,node:{global:!1,__filename:!1,__dirname:!1},experiments:{topLevelAwait:!0,asyncWebAssembly:!0,cacheUnaffected:!0,layers:!0,lazyCompilation:h.lazyCompilation&&g&&{imports:!0,entries:!0,test:e=>{let t=e.nameForCondition();return!!(t&&(t.startsWith(m(c))||t.startsWith(m("@app/comment"))||t.startsWith(s.pagesPath)||t.startsWith(s.componentsPath)))}},buildHttp:l(h.buildHttp)?{allowedUris:[],lockfileLocation:o(s.httpCachePath,"http.lock"),cacheLocation:o(s.httpCachePath,"data"),upgrade:!0,...h.buildHttp}:h.buildHttp,backCompat:!0,futureDefaults:!0,css:!1,outputModule:!1},resolve:{extensions:[".mts",".mjs",".ts",".tsx",".js",".jsx",".json",".wasm"],alias:h.alias,modules:[s.nodeModules,s.pnpmNodeModules,s.denoNodeModules],mainFields:["browser","module","main"],mainFiles:["index"],plugins:h.resolvePlugins,preferAbsolute:!0,cache:!0,fallback:{}},externals:h.externals,output:outputConfig};h.overrideResolve&&commonConfig.resolve.plugins.push(new r(Object.assign({original:h.alias["@"],override:a&&p(a)},h.overrideResolve)));
1
+ import{extname as e,join as t,resolve as o}from"node:path";import s,{config_files as n,CUSTOMCONFIG as a}from"./commom/paths.mjs";import i from"./commom/require.mjs";import r from"./plugin/override-resolve.mjs";import{isObject as l,node_modules as m,resolveProgram as p}from"./utils/index.mjs";import{exampleModuleName as c}from"./vm/example.mjs";import u from"./vm/info.mjs";import{CONFIG as h,PUBLICPATH as f}from"./config.mjs";import d from"./plugins.config.mjs";import{isDev as g,isLibrary as b,NODE_ENV as y,packageJson as j}from"./process-env.mjs";export const outputConfig={path:p(b?"docs":"dist"),filename:"js/[name].[contenthash].bundle.js",chunkFilename:"js/[contenthash].chunk.js",assetModuleFilename:t=>{let o=e(t.filename||"").substring(1);return`assets/${o}/[hash][ext]`},library:{name:`${u.projectName}`,type:"umd",umdNamedDefine:!0},globalObject:"self",chunkLoadingGlobal:`webpackJsonp_${j.name}`,pathinfo:g,clean:!g,publicPath:f,asyncChunks:!0,charset:!0,iife:!0,crossOriginLoading:"anonymous",enabledWasmLoadingTypes:["fetch"],hotUpdateChunkFilename:"[id].[fullhash].hot.js",hotUpdateMainFilename:"[runtime].[fullhash].hot.json"};let v={main:[m("@app/entry")]};if(h.polyfill&&v.main.unshift(t(s.corePath,"./polyfills/replace-children.mjs")),g&&h.refresh&&h.env.injectRemoteReactRefresh&&v.main.unshift(i.resolve("@moneko/react/lib/injectRemoteReactRefresh.js")),h.entry&&("string"==typeof h.entry?v={main:[h.entry]}:Object.keys(h.entry)&&(v=Object.assign(v,h.entry))),"string"==typeof v.main&&(v.main=[v.main]),h.output){if("string"==typeof h.output)outputConfig.path=h.output;else if(Object.keys(h.output)){let e=h.output,t={...outputConfig.library};Object.assign(outputConfig,e),"object"==typeof h.output&&e.library&&(outputConfig.library=Object.assign(t,e.library))}}let C={type:"filesystem",allowCollectingMemory:!0,cacheDirectory:s.webpackCachePath,memoryCacheUnaffected:!0,name:`.${[a,y].filter(Boolean).join("-")}`,version:`${j.version}`,buildDependencies:{config:n}};!1===h.cache?C=!1:l(h.cache)&&(C=Object.assign(C,h.cache));export const commonConfig={name:"client",target:"web",devtool:h.devtool,entry:v,mode:g?"development":"production",stats:"errors-only",cache:C,snapshot:{immutablePaths:[/node_modules\/(?!(@app|@moneko)\/)/],managedPaths:[/^@app\/.+/,/^@moneko\/.+/],buildDependencies:{timestamp:!0,hash:!0}},infrastructureLogging:{level:"error"},externalsPresets:h.externalsPresets,plugins:d,node:{global:!1,__filename:!1,__dirname:!1},experiments:{topLevelAwait:!0,asyncWebAssembly:!0,cacheUnaffected:!0,layers:!0,lazyCompilation:h.lazyCompilation&&g&&{imports:!0,entries:!0,test:e=>{let t=e.nameForCondition();return!!(t&&(t.startsWith(m(c))||t.startsWith(m("@app/comment"))||t.startsWith(s.pagesPath)||t.startsWith(s.componentsPath)))}},buildHttp:l(h.buildHttp)?{allowedUris:[],lockfileLocation:o(s.httpCachePath,"http.lock"),cacheLocation:o(s.httpCachePath,"data"),upgrade:!0,...h.buildHttp}:h.buildHttp,backCompat:!0,futureDefaults:!0,css:!1,outputModule:!1},resolve:{extensions:[".mts",".mjs",".ts",".tsx",".js",".jsx",".json",".wasm"],alias:h.alias,modules:[s.nodeModules,s.pnpmNodeModules,s.denoNodeModules],mainFields:["browser","module","main"],mainFiles:["index"],plugins:h.resolvePlugins,preferAbsolute:!0,cache:!0,fallback:{}},externals:h.externals,output:outputConfig};h.overrideResolve&&commonConfig.resolve.plugins.push(new r(Object.assign({original:h.alias["@"],override:a&&p(a)},h.overrideResolve)));
@@ -0,0 +1,22 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDvDCCAqSgAwIBAgIFNTA1NTcwDQYJKoZIhvcNAQELBQAwgYwxLDAqBgNVBAMT
3
+ I0xvY2FsIERldmVsb3BtZW50IENBIC0gRE8gTk9UIFRSVVNUMQswCQYDVQQGEwJD
4
+ TjEOMAwGA1UECBMFSHVuYW4xETAPBgNVBAcTCENoYW5nc2hhMSwwKgYDVQQKEyNM
5
+ b2NhbCBEZXZlbG9wbWVudCBDQSAtIERPIE5PVCBUUlVTVDAeFw0yNTA0MTAwNzQ5
6
+ MzdaFw0yNjA0MTAwNzQ5MzdaMIGMMSwwKgYDVQQDEyNMb2NhbCBEZXZlbG9wbWVu
7
+ dCBDQSAtIERPIE5PVCBUUlVTVDELMAkGA1UEBhMCQ04xDjAMBgNVBAgTBUh1bmFu
8
+ MREwDwYDVQQHEwhDaGFuZ3NoYTEsMCoGA1UEChMjTG9jYWwgRGV2ZWxvcG1lbnQg
9
+ Q0EgLSBETyBOT1QgVFJVU1QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
10
+ AQC8JyVLUKEaZ4Hcm0xXAFLMqLZxq78Kl/B0YlI11HfPWo8afatul+x+jrQRhTwX
11
+ gX2m/aubVKV/G86YYniGdVivcfGgIGHEZurvE1iQmvSD8LZ0sxrUURYfQ7Wtsy84
12
+ 2WzYmPqCyoQQttG9oRD9HCgIZ3kzmADIsNCca1zIwUSKmZzld2s5eXunxDWWCh6z
13
+ rNNC0BHVdEUzK/v5qLb1AFcdstzoGFVe+VDKkpYydJXeVKA9nnqy+M5JYp2T4U5A
14
+ HCRys4S4Sl7gEUsE6TAhbd69ysXBG1d7pZci7AW0m21Tm8sbPFHqodLJ1TF1zokR
15
+ kIjUpswUeT2qx+ZOJD4g8X6JAgMBAAGjIzAhMA8GA1UdEwEB/wQFMAMBAf8wDgYD
16
+ VR0PAQH/BAQDAgIEMA0GCSqGSIb3DQEBCwUAA4IBAQAgPtkx+1dOVv9dqet9Ovip
17
+ ydP/pzddJejyUfPtwkGfbQ+R9W3NYNwDkstPQT+qJ99WBEauut0lPjxX3GKy/YyJ
18
+ uPgF3rFTB5S3Y99I/5Ka+vs8FEQwLxKIk4Y2NwG6TDp/agGKiA+AnvMbesf+H0ID
19
+ fKAMkZ44hNQnU9AljW1qmNSnaZPxMczLqL4qwlc8R8idN9UFnxZv11rkDPesKodI
20
+ uDbQW6RO9jL2JeecpbtVJYLqNNF8XOYHtaiaPWVX8rd3GWWoAUikJdgjZn1drGHh
21
+ SxokprNN0FL6rybVQirhQWNq16JD6JZsvLIF53XYIsiYcKnQjXnp08vt0xCQDxoS
22
+ -----END CERTIFICATE-----
@@ -0,0 +1,27 @@
1
+ -----BEGIN RSA PRIVATE KEY-----
2
+ MIIEowIBAAKCAQEAvCclS1ChGmeB3JtMVwBSzKi2cau/CpfwdGJSNdR3z1qPGn2r
3
+ bpfsfo60EYU8F4F9pv2rm1SlfxvOmGJ4hnVYr3HxoCBhxGbq7xNYkJr0g/C2dLMa
4
+ 1FEWH0O1rbMvONls2Jj6gsqEELbRvaEQ/RwoCGd5M5gAyLDQnGtcyMFEipmc5Xdr
5
+ OXl7p8Q1lgoes6zTQtAR1XRFMyv7+ai29QBXHbLc6BhVXvlQypKWMnSV3lSgPZ56
6
+ svjOSWKdk+FOQBwkcrOEuEpe4BFLBOkwIW3evcrFwRtXe6WXIuwFtJttU5vLGzxR
7
+ 6qHSydUxdc6JEZCI1KbMFHk9qsfmTiQ+IPF+iQIDAQABAoIBABz5Ojj61ZQnVEwQ
8
+ bhUHq7hwUof2lpifBRwm99nqOfjoTRkbOQbyxixG9VutVK+Z9St97KsiwcltEsdM
9
+ gprR/zIlLbwmwGdqIctnA0BhXD3lF3OpEPyY7/sohhWVfjQW5zgDdrAlV2jrfijh
10
+ YKhZaaDBrlxPj+9XqwgrUEJp4JAnC9GQOdboevJUXtqtxlz96jqIXFMRXedhxcQC
11
+ dYLuQ2kWZ9Qzjn35dMWs0fvQu17jggujctSFI1nbFxtEPeha+ShTph6d1KnGMFUz
12
+ xuxdGiNmkveKYr7sKhKO7fWAwOeiKkMap2nI1BjhAStyiolygcxPBpeVa4+wjY/d
13
+ R5wRunECgYEA6jwl4WX0ViterNelMSDcTEsc68ga0xo0AtjThh2iUWExL879/gu+
14
+ 18fJKgwVe1UW1Zp6SW50RWb0LYt2GaAL+7pmn5bOo7jCrWMh1xkGJV0YAKwzpTpR
15
+ urBiL76WSQImOCOd2WVb76tsFi7BchLpkULfaMgcbAquA4nak88UMc8CgYEAzaLS
16
+ 0mWSsiYQ4Y0QyS2lOIXJ5/gZmT6e9ToxlpOx4DXQfg2NIgQv87S3+pe9/thp5+Gb
17
+ WlzE3iRSnIRTbsAarFb5OX5TkY/yvDBWG6RbygFnN/1UnQP3zkZGCwRcCZ9ovcEB
18
+ vh2RbpeInFTboBOHIC+jzQ/JaOJBHyD0wE3FmCcCgYBOyYSEWGLjSRtDUBXEfKUd
19
+ FHbZ6Cj9sOalvoEHr5gVf3en+Rv+A71hn1XOytm+7lQL7TYM1RZO8d5YI3zKCcd+
20
+ GKjELVm8QD1bTOjpDQXAM5wLPeDxRriO7x1XqeerDwoEABbsNOfDqgllPLzcvffK
21
+ YI/9ErJctQrrLcdTyGemiQKBgHgcixfpzG3SXjngs9VOnBsPyod8GzevpBmJDD3v
22
+ tw5HYKjAMZeU6o1nGa99wrSApBuVY7C8TyGSBc72W+VswCe6BYjXiOiVNCtH8IPk
23
+ 1NiBSVEi37F3B9+snG0C9t+IBR4RBnuNucznJhxqVH6D6YGbUgoNFo/02CTekxdg
24
+ VfIxAoGBAOUxvprqF3YBl1k3Zz6VV8kXapx3t1YCTup9Ef9ahClSE0sqjyqq7lM7
25
+ ZkmCVJIfVgZaLvVT7tlOsLeima2VNC7xfxdRB4i/qQfNILhr9F/s/epQQvJkZ0CS
26
+ ryB7kc0RBMJZ2bD8ozcihstdxglpd4eTt+0DQzWfTGGWhmq4LNuq
27
+ -----END RSA PRIVATE KEY-----
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moneko/core",
3
- "version": "3.40.0",
3
+ "version": "3.40.2",
4
4
  "description": "core",
5
5
  "main": "lib/index.mjs",
6
6
  "type": "module",