@cyberskill/shared 1.185.0 → 1.187.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/dist/_tsup-dts-rollup.d.cts +26 -6
- package/dist/_tsup-dts-rollup.d.ts +26 -6
- package/dist/node/cli/cli.util.cjs +1 -1
- package/dist/node/cli/cli.util.js +1 -1
- package/dist/node/cli/index.cjs +1 -1
- package/dist/node/cli/index.js +1 -1
- package/dist/node/index.cjs +1 -1
- package/dist/node/index.js +1 -1
- package/dist/react/apollo-client/apollo-client.component.cjs +1 -1
- package/dist/react/apollo-client/apollo-client.component.js +1 -1
- package/dist/react/apollo-client/index.cjs +1 -1
- package/dist/react/apollo-client/index.d.cts +4 -0
- package/dist/react/apollo-client/index.d.ts +4 -0
- package/dist/react/apollo-client/index.js +1 -1
- package/dist/react/apollo-error/apollo-error.component.cjs +1 -1
- package/dist/react/apollo-error/apollo-error.component.d.cts +1 -1
- package/dist/react/apollo-error/apollo-error.component.d.ts +1 -1
- package/dist/react/apollo-error/apollo-error.component.js +1 -1
- package/dist/react/apollo-error/apollo-error.type.d.cts +1 -0
- package/dist/react/apollo-error/apollo-error.type.d.ts +1 -0
- package/dist/react/apollo-error/index.cjs +1 -1
- package/dist/react/apollo-error/index.d.cts +2 -1
- package/dist/react/apollo-error/index.d.ts +2 -1
- package/dist/react/apollo-error/index.js +1 -1
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.d.cts +6 -1
- package/dist/react/index.d.ts +6 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import type { AggregatePaginateResult } from 'mongoose';
|
|
|
5
5
|
import { ApolloCache } from '@apollo/client';
|
|
6
6
|
import { ApolloClient } from '@apollo/client';
|
|
7
7
|
import { ApolloClientOptions } from '@apollo/client';
|
|
8
|
-
import
|
|
8
|
+
import { ApolloError } from '@apollo/client';
|
|
9
9
|
import type { ApolloLink } from '@apollo/client';
|
|
10
10
|
import { ApolloServer } from '@apollo/server';
|
|
11
11
|
import type { Application } from 'express';
|
|
@@ -86,7 +86,11 @@ import type { Type } from '@nestjs/common';
|
|
|
86
86
|
import type { UpdateQuery } from 'mongoose';
|
|
87
87
|
import type { UpdateResult } from 'mongodb';
|
|
88
88
|
import type { UriFunction } from '@apollo/client';
|
|
89
|
+
import { useLazyQuery } from '@apollo/client/react/hooks/hooks.cjs';
|
|
90
|
+
import { useMutation } from '@apollo/client/react/hooks/hooks.cjs';
|
|
91
|
+
import { useQuery } from '@apollo/client/react/hooks/hooks.cjs';
|
|
89
92
|
import type { UserConfig } from 'vite';
|
|
93
|
+
import { useSubscription } from '@apollo/client/react/hooks/hooks.cjs';
|
|
90
94
|
import { useTranslation } from 'react-i18next';
|
|
91
95
|
import { useTranslations } from 'next-intl';
|
|
92
96
|
import type { ValidationPipe } from '@nestjs/common';
|
|
@@ -109,11 +113,15 @@ export { ApolloClientOptions }
|
|
|
109
113
|
export { ApolloClientOptions as ApolloClientOptions_alias_1 }
|
|
110
114
|
export { ApolloClientOptions as ApolloClientOptions_alias_2 }
|
|
111
115
|
|
|
112
|
-
declare function ApolloError(): React_2.JSX.Element | null;
|
|
113
116
|
export { ApolloError }
|
|
114
117
|
export { ApolloError as ApolloError_alias_1 }
|
|
115
118
|
export { ApolloError as ApolloError_alias_2 }
|
|
116
119
|
|
|
120
|
+
declare function ApolloErrorComponent(): React_2.JSX.Element | null;
|
|
121
|
+
export { ApolloErrorComponent }
|
|
122
|
+
export { ApolloErrorComponent as ApolloErrorComponent_alias_1 }
|
|
123
|
+
export { ApolloErrorComponent as ApolloErrorComponent_alias_2 }
|
|
124
|
+
|
|
117
125
|
declare const ApolloErrorContext: Context<I_ApolloErrorContext | undefined>;
|
|
118
126
|
export { ApolloErrorContext }
|
|
119
127
|
export { ApolloErrorContext as ApolloErrorContext_alias_1 }
|
|
@@ -1721,8 +1729,8 @@ export { GRAPHQL_URI_DEFAULT as GRAPHQL_URI_DEFAULT_alias_1 }
|
|
|
1721
1729
|
export { GRAPHQL_URI_DEFAULT as GRAPHQL_URI_DEFAULT_alias_2 }
|
|
1722
1730
|
|
|
1723
1731
|
declare interface I_ApolloErrorContext {
|
|
1724
|
-
error:
|
|
1725
|
-
showError: (error:
|
|
1732
|
+
error: ApolloError | null;
|
|
1733
|
+
showError: (error: ApolloError) => void;
|
|
1726
1734
|
hideError: () => void;
|
|
1727
1735
|
}
|
|
1728
1736
|
export { I_ApolloErrorContext }
|
|
@@ -3129,7 +3137,7 @@ export { serializer }
|
|
|
3129
3137
|
export { serializer as serializer_alias_1 }
|
|
3130
3138
|
export { serializer as serializer_alias_2 }
|
|
3131
3139
|
|
|
3132
|
-
declare function setGlobalApolloErrorCallback(callback: (err:
|
|
3140
|
+
declare function setGlobalApolloErrorCallback(callback: (err: ApolloError) => void): void;
|
|
3133
3141
|
export { setGlobalApolloErrorCallback }
|
|
3134
3142
|
export { setGlobalApolloErrorCallback as setGlobalApolloErrorCallback_alias_1 }
|
|
3135
3143
|
export { setGlobalApolloErrorCallback as setGlobalApolloErrorCallback_alias_2 }
|
|
@@ -3156,7 +3164,7 @@ export { setupPackages }
|
|
|
3156
3164
|
export { setupPackages as setupPackages_alias_1 }
|
|
3157
3165
|
export { setupPackages as setupPackages_alias_2 }
|
|
3158
3166
|
|
|
3159
|
-
declare function showGlobalApolloError(error:
|
|
3167
|
+
declare function showGlobalApolloError(error: ApolloError): void;
|
|
3160
3168
|
export { showGlobalApolloError }
|
|
3161
3169
|
export { showGlobalApolloError as showGlobalApolloError_alias_1 }
|
|
3162
3170
|
export { showGlobalApolloError as showGlobalApolloError_alias_2 }
|
|
@@ -3542,16 +3550,25 @@ export { useApolloError }
|
|
|
3542
3550
|
export { useApolloError as useApolloError_alias_1 }
|
|
3543
3551
|
export { useApolloError as useApolloError_alias_2 }
|
|
3544
3552
|
|
|
3553
|
+
export { useLazyQuery }
|
|
3554
|
+
export { useLazyQuery as useLazyQuery_alias_1 }
|
|
3555
|
+
|
|
3545
3556
|
declare function useLoading(): I_LoadingContext_2;
|
|
3546
3557
|
export { useLoading }
|
|
3547
3558
|
export { useLoading as useLoading_alias_1 }
|
|
3548
3559
|
export { useLoading as useLoading_alias_2 }
|
|
3549
3560
|
|
|
3561
|
+
export { useMutation }
|
|
3562
|
+
export { useMutation as useMutation_alias_1 }
|
|
3563
|
+
|
|
3550
3564
|
declare function useNextIntl(): I_NextIntlContext;
|
|
3551
3565
|
export { useNextIntl }
|
|
3552
3566
|
export { useNextIntl as useNextIntl_alias_1 }
|
|
3553
3567
|
export { useNextIntl as useNextIntl_alias_2 }
|
|
3554
3568
|
|
|
3569
|
+
export { useQuery }
|
|
3570
|
+
export { useQuery as useQuery_alias_1 }
|
|
3571
|
+
|
|
3555
3572
|
declare function useStorage<T>(key: string, initialValue?: T, serializer?: I_Serializer_2<T>): {
|
|
3556
3573
|
value: T | undefined;
|
|
3557
3574
|
set: (newValue: T | ((val: T | undefined) => T)) => void;
|
|
@@ -3561,6 +3578,9 @@ export { useStorage }
|
|
|
3561
3578
|
export { useStorage as useStorage_alias_1 }
|
|
3562
3579
|
export { useStorage as useStorage_alias_2 }
|
|
3563
3580
|
|
|
3581
|
+
export { useSubscription }
|
|
3582
|
+
export { useSubscription as useSubscription_alias_1 }
|
|
3583
|
+
|
|
3564
3584
|
declare const useTranslateI18next: typeof useTranslation;
|
|
3565
3585
|
export { useTranslateI18next }
|
|
3566
3586
|
export { useTranslateI18next as useTranslateI18next_alias_1 }
|
|
@@ -5,7 +5,7 @@ import type { AggregatePaginateResult } from 'mongoose';
|
|
|
5
5
|
import { ApolloCache } from '@apollo/client';
|
|
6
6
|
import { ApolloClient } from '@apollo/client';
|
|
7
7
|
import { ApolloClientOptions } from '@apollo/client';
|
|
8
|
-
import
|
|
8
|
+
import { ApolloError } from '@apollo/client';
|
|
9
9
|
import type { ApolloLink } from '@apollo/client';
|
|
10
10
|
import { ApolloServer } from '@apollo/server';
|
|
11
11
|
import type { Application } from 'express';
|
|
@@ -86,7 +86,11 @@ import type { Type } from '@nestjs/common';
|
|
|
86
86
|
import type { UpdateQuery } from 'mongoose';
|
|
87
87
|
import type { UpdateResult } from 'mongodb';
|
|
88
88
|
import type { UriFunction } from '@apollo/client';
|
|
89
|
+
import { useLazyQuery } from '@apollo/client/react/hooks/hooks.cjs';
|
|
90
|
+
import { useMutation } from '@apollo/client/react/hooks/hooks.cjs';
|
|
91
|
+
import { useQuery } from '@apollo/client/react/hooks/hooks.cjs';
|
|
89
92
|
import type { UserConfig } from 'vite';
|
|
93
|
+
import { useSubscription } from '@apollo/client/react/hooks/hooks.cjs';
|
|
90
94
|
import { useTranslation } from 'react-i18next';
|
|
91
95
|
import { useTranslations } from 'next-intl';
|
|
92
96
|
import type { ValidationPipe } from '@nestjs/common';
|
|
@@ -109,11 +113,15 @@ export { ApolloClientOptions }
|
|
|
109
113
|
export { ApolloClientOptions as ApolloClientOptions_alias_1 }
|
|
110
114
|
export { ApolloClientOptions as ApolloClientOptions_alias_2 }
|
|
111
115
|
|
|
112
|
-
declare function ApolloError(): React_2.JSX.Element | null;
|
|
113
116
|
export { ApolloError }
|
|
114
117
|
export { ApolloError as ApolloError_alias_1 }
|
|
115
118
|
export { ApolloError as ApolloError_alias_2 }
|
|
116
119
|
|
|
120
|
+
declare function ApolloErrorComponent(): React_2.JSX.Element | null;
|
|
121
|
+
export { ApolloErrorComponent }
|
|
122
|
+
export { ApolloErrorComponent as ApolloErrorComponent_alias_1 }
|
|
123
|
+
export { ApolloErrorComponent as ApolloErrorComponent_alias_2 }
|
|
124
|
+
|
|
117
125
|
declare const ApolloErrorContext: Context<I_ApolloErrorContext | undefined>;
|
|
118
126
|
export { ApolloErrorContext }
|
|
119
127
|
export { ApolloErrorContext as ApolloErrorContext_alias_1 }
|
|
@@ -1721,8 +1729,8 @@ export { GRAPHQL_URI_DEFAULT as GRAPHQL_URI_DEFAULT_alias_1 }
|
|
|
1721
1729
|
export { GRAPHQL_URI_DEFAULT as GRAPHQL_URI_DEFAULT_alias_2 }
|
|
1722
1730
|
|
|
1723
1731
|
declare interface I_ApolloErrorContext {
|
|
1724
|
-
error:
|
|
1725
|
-
showError: (error:
|
|
1732
|
+
error: ApolloError | null;
|
|
1733
|
+
showError: (error: ApolloError) => void;
|
|
1726
1734
|
hideError: () => void;
|
|
1727
1735
|
}
|
|
1728
1736
|
export { I_ApolloErrorContext }
|
|
@@ -3129,7 +3137,7 @@ export { serializer }
|
|
|
3129
3137
|
export { serializer as serializer_alias_1 }
|
|
3130
3138
|
export { serializer as serializer_alias_2 }
|
|
3131
3139
|
|
|
3132
|
-
declare function setGlobalApolloErrorCallback(callback: (err:
|
|
3140
|
+
declare function setGlobalApolloErrorCallback(callback: (err: ApolloError) => void): void;
|
|
3133
3141
|
export { setGlobalApolloErrorCallback }
|
|
3134
3142
|
export { setGlobalApolloErrorCallback as setGlobalApolloErrorCallback_alias_1 }
|
|
3135
3143
|
export { setGlobalApolloErrorCallback as setGlobalApolloErrorCallback_alias_2 }
|
|
@@ -3156,7 +3164,7 @@ export { setupPackages }
|
|
|
3156
3164
|
export { setupPackages as setupPackages_alias_1 }
|
|
3157
3165
|
export { setupPackages as setupPackages_alias_2 }
|
|
3158
3166
|
|
|
3159
|
-
declare function showGlobalApolloError(error:
|
|
3167
|
+
declare function showGlobalApolloError(error: ApolloError): void;
|
|
3160
3168
|
export { showGlobalApolloError }
|
|
3161
3169
|
export { showGlobalApolloError as showGlobalApolloError_alias_1 }
|
|
3162
3170
|
export { showGlobalApolloError as showGlobalApolloError_alias_2 }
|
|
@@ -3542,16 +3550,25 @@ export { useApolloError }
|
|
|
3542
3550
|
export { useApolloError as useApolloError_alias_1 }
|
|
3543
3551
|
export { useApolloError as useApolloError_alias_2 }
|
|
3544
3552
|
|
|
3553
|
+
export { useLazyQuery }
|
|
3554
|
+
export { useLazyQuery as useLazyQuery_alias_1 }
|
|
3555
|
+
|
|
3545
3556
|
declare function useLoading(): I_LoadingContext_2;
|
|
3546
3557
|
export { useLoading }
|
|
3547
3558
|
export { useLoading as useLoading_alias_1 }
|
|
3548
3559
|
export { useLoading as useLoading_alias_2 }
|
|
3549
3560
|
|
|
3561
|
+
export { useMutation }
|
|
3562
|
+
export { useMutation as useMutation_alias_1 }
|
|
3563
|
+
|
|
3550
3564
|
declare function useNextIntl(): I_NextIntlContext;
|
|
3551
3565
|
export { useNextIntl }
|
|
3552
3566
|
export { useNextIntl as useNextIntl_alias_1 }
|
|
3553
3567
|
export { useNextIntl as useNextIntl_alias_2 }
|
|
3554
3568
|
|
|
3569
|
+
export { useQuery }
|
|
3570
|
+
export { useQuery as useQuery_alias_1 }
|
|
3571
|
+
|
|
3555
3572
|
declare function useStorage<T>(key: string, initialValue?: T, serializer?: I_Serializer_2<T>): {
|
|
3556
3573
|
value: T | undefined;
|
|
3557
3574
|
set: (newValue: T | ((val: T | undefined) => T)) => void;
|
|
@@ -3561,6 +3578,9 @@ export { useStorage }
|
|
|
3561
3578
|
export { useStorage as useStorage_alias_1 }
|
|
3562
3579
|
export { useStorage as useStorage_alias_2 }
|
|
3563
3580
|
|
|
3581
|
+
export { useSubscription }
|
|
3582
|
+
export { useSubscription as useSubscription_alias_1 }
|
|
3583
|
+
|
|
3564
3584
|
declare const useTranslateI18next: typeof useTranslation;
|
|
3565
3585
|
export { useTranslateI18next }
|
|
3566
3586
|
export { useTranslateI18next as useTranslateI18next_alias_1 }
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
"use strict";function e(e,t){if(t==null||t>e.length)t=e.length;for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function t(e){if(Array.isArray(e))return e}function n(t){if(Array.isArray(t))return e(t)}function r(e,t,n,r,i,s,o){try{var a=e[s](o);var c=a.value}catch(e){n(e);return}if(a.done){t(c)}else{Promise.resolve(c).then(r,i)}}function i(e){return function(){var t=this,n=arguments;return new Promise(function(i,s){var o=e.apply(t,n);function a(e){r(o,i,s,a,c,"next",e)}function c(e){r(o,i,s,a,c,"throw",e)}a(undefined)})}}function s(e,t,n){if(t in e){Object.defineProperty(e,t,{value:n,enumerable:true,configurable:true,writable:true})}else{e[t]=n}return e}function o(e,t){if(t!=null&&typeof Symbol!=="undefined"&&t[Symbol.hasInstance]){return!!t[Symbol.hasInstance](e)}else{return e instanceof t}}function a(e){if(typeof Symbol!=="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function c(e,t){var n=e==null?null:typeof Symbol!=="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n==null)return;var r=[];var i=true;var s=false;var o,a;try{for(n=n.call(e);!(i=(o=n.next()).done);i=true){r.push(o.value);if(t&&r.length===t)break}}catch(e){s=true;a=e}finally{try{if(!i&&n["return"]!=null)n["return"]()}finally{if(s)throw a}}return r}function u(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function l(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function d(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};var r=Object.keys(n);if(typeof Object.getOwnPropertySymbols==="function"){r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))}r.forEach(function(t){s(e,t,n[t])})}return e}function p(e,n){return t(e)||c(e,n)||m(e,n)||u()}function E(e){return n(e)||a(e)||m(e)||l()}function f(e){"@swc/helpers - typeof";return e&&typeof Symbol!=="undefined"&&e.constructor===Symbol?"symbol":typeof e}function m(t,n){if(!t)return;if(typeof t==="string")return e(t,n);var r=Object.prototype.toString.call(t).slice(8,-1);if(r==="Object"&&t.constructor)r=t.constructor.name;if(r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return e(t,n)}function g(e,t){var n,r,i,s={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o=Object.create((typeof Iterator==="function"?Iterator:Object).prototype);return o.next=a(0),o["throw"]=a(1),o["return"]=a(2),typeof Symbol==="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(e){return function(t){return c([e,t])}}function c(a){if(n)throw new TypeError("Generator is already executing.");while(o&&(o=0,a[0]&&(s=0)),s)try{if(n=1,r&&(i=a[0]&2?r["return"]:a[0]?r["throw"]||((i=r["return"])&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;if(r=0,i)a=[a[0]&2,i.value];switch(a[0]){case 0:case 1:i=a;break;case 4:s.label++;return{value:a[1],done:false};case 5:s.label++;r=a[1];a=[0];continue;case 7:a=s.ops.pop();s.trys.pop();continue;default:if(!(i=s.trys,i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){s=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){s.label=a[1];break}if(a[0]===6&&s.label<i[1]){s.label=i[1];i=a;break}if(i&&s.label<i[2]){s.label=i[2];s.ops.push(a);break}if(i[2])s.ops.pop();s.trys.pop();continue}a=t.call(e,s)}catch(e){a=[6,e];r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var y=Object.create;var h=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var S=Object.getOwnPropertyNames;var D=Object.getPrototypeOf,O=Object.prototype.hasOwnProperty;var C=function(e,t){return h(e,"name",{value:t,configurable:!0})};var I=function(e,t,n,r){var i=true,s=false,o=undefined;if(t&&(typeof t==="undefined"?"undefined":f(t))=="object"||typeof t=="function")try{var a=function(){var i=u.value;!O.call(e,i)&&i!==n&&h(e,i,{get:function(){return t[i]},enumerable:!(r=v(t,i))||r.enumerable})};for(var c=S(t)[Symbol.iterator](),u;!(i=(u=c.next()).done);i=true)a()}catch(e){s=true;o=e}finally{try{if(!i&&c.return!=null){c.return()}}finally{if(s){throw o}}}return e};var N=function(e,t,n){return n=e!=null?y(D(e)):{},I(t||!e||!e.__esModule?h(n,"default",{value:e,enumerable:!0}):n,e)};var T=N(require("process"),1),x=require("yargs/helpers"),A=N(require("yargs/yargs"),1);var _={name:"@cyberskill/shared",type:"module",version:"1.184.0",description:"CyberSkill Shared",author:"Stephen Cheng",license:"MIT",homepage:"https://github.com/cyberskill-world/shared#readme",repository:{type:"git",url:"git+https://github.com/cyberskill-world/shared.git"},bugs:{url:"https://github.com/cyberskill-world/shared/issues"},exports:{".":{types:"./dist/index.d.ts",import:"./dist/index.js",require:"./dist/index.cjs"},"./config":{types:"./dist/config/index.d.ts",import:"./dist/config/index.js",require:"./dist/config/index.cjs"},"./config/commitlint":{types:"./dist/config/commitlint/index.d.ts",import:"./dist/config/commitlint/index.js",require:"./dist/config/commitlint/index.cjs"},"./config/env":{types:"./dist/config/env/index.d.ts",import:"./dist/config/env/index.js",require:"./dist/config/env/index.cjs"},"./config/eslint":{types:"./dist/config/eslint/index.d.ts",import:"./dist/config/eslint/index.js",require:"./dist/config/eslint/index.cjs"},"./config/graphql-codegen":{types:"./dist/config/graphql-codegen/index.d.ts",import:"./dist/config/graphql-codegen/index.js",require:"./dist/config/graphql-codegen/index.cjs"},"./config/lint-staged":{types:"./dist/config/lint-staged/index.d.ts",import:"./dist/config/lint-staged/index.js",require:"./dist/config/lint-staged/index.cjs"},"./config/vitest":{types:"./dist/config/vitest/index.d.ts",import:"./dist/config/vitest/index.js",require:"./dist/config/vitest/index.cjs"},"./constant":{types:"./dist/constant/index.d.ts",import:"./dist/constant/index.js",require:"./dist/constant/index.cjs"},"./node":{types:"./dist/node/index.d.ts",import:"./dist/node/index.js",require:"./dist/node/index.cjs"},"./node/apollo-server":{types:"./dist/node/apollo-server/index.d.ts",import:"./dist/node/apollo-server/index.js",require:"./dist/node/apollo-server/index.cjs"},"./node/cli":{types:"./dist/node/cli/index.d.ts",import:"./dist/node/cli/index.js",require:"./dist/node/cli/index.cjs"},"./node/command":{types:"./dist/node/command/index.d.ts",import:"./dist/node/command/index.js",require:"./dist/node/command/index.cjs"},"./node/express":{types:"./dist/node/express/index.d.ts",import:"./dist/node/express/index.js",require:"./dist/node/express/index.cjs"},"./node/fs":{types:"./dist/node/fs/index.d.ts",import:"./dist/node/fs/index.js",require:"./dist/node/fs/index.cjs"},"./node/log":{types:"./dist/node/log/index.d.ts",import:"./dist/node/log/index.js",require:"./dist/node/log/index.cjs"},"./node/mongo":{types:"./dist/node/mongo/index.d.ts",import:"./dist/node/mongo/index.js",require:"./dist/node/mongo/index.cjs"},"./node/package":{types:"./dist/node/package/index.d.ts",import:"./dist/node/package/index.js",require:"./dist/node/package/index.cjs"},"./node/path":{types:"./dist/node/path/index.d.ts",import:"./dist/node/path/index.js",require:"./dist/node/path/index.cjs"},"./node/storage":{types:"./dist/node/storage/index.d.ts",import:"./dist/node/storage/index.js",require:"./dist/node/storage/index.cjs"},"./node/ws":{types:"./dist/node/ws/index.d.ts",import:"./dist/node/ws/index.js",require:"./dist/node/ws/index.cjs"},"./react":{types:"./dist/react/index.d.ts",import:"./dist/react/index.js",require:"./dist/react/index.cjs"},"./react/apollo-client":{types:"./dist/react/apollo-client/index.d.ts",import:"./dist/react/apollo-client/index.js",require:"./dist/react/apollo-client/index.cjs"},"./react/apollo-error":{types:"./dist/react/apollo-error/index.d.ts",import:"./dist/react/apollo-error/index.js",require:"./dist/react/apollo-error/index.cjs"},"./react/i18next":{types:"./dist/react/i18next/index.d.ts",import:"./dist/react/i18next/index.js",require:"./dist/react/i18next/index.cjs"},"./react/loading":{types:"./dist/react/loading/index.d.ts",import:"./dist/react/loading/index.js",require:"./dist/react/loading/index.cjs"},"./react/log":{types:"./dist/react/log/index.d.ts",import:"./dist/react/log/index.js",require:"./dist/react/log/index.cjs"},"./react/next-intl":{types:"./dist/react/next-intl/index.d.ts",import:"./dist/react/next-intl/index.js",require:"./dist/react/next-intl/index.cjs"},"./react/storage":{types:"./dist/react/storage/index.d.ts",import:"./dist/react/storage/index.js",require:"./dist/react/storage/index.cjs"},"./react/toast":{types:"./dist/react/toast/index.d.ts",import:"./dist/react/toast/index.js",require:"./dist/react/toast/index.cjs"},"./react/index.css":{import:"./dist/react/index.css",require:"./dist/react/index.css"},"./typescript":{types:"./dist/typescript/index.d.ts",import:"./dist/typescript/index.js",require:"./dist/typescript/index.cjs"},"./util":{types:"./dist/util/index.d.ts",import:"./dist/util/index.js",require:"./dist/util/index.cjs"}},typesVersions:{"*":{config:["dist/config/index.d.ts"],constant:["dist/constant/index.d.ts"],node:["dist/node/index.d.ts"],react:["dist/react/index.d.ts"],typescript:["dist/typescript/index.d.ts"],util:["dist/util/index.d.ts"]}},bin:{cyberskill:"dist/node/cli/index.js"},files:["dist","public"],scripts:{build:"tsup",commitlint:"tsx src/node/cli/index.ts commitlint",dev:"tsup --watch",inspect:"tsx src/node/cli/index.ts inspect",lint:"tsx src/node/cli/index.ts lint","lint:fix":"tsx src/node/cli/index.ts lint:fix","lint:inspect":"tsx src/node/cli/index.ts lint:inspect",ready:"tsx src/node/cli/index.ts ready",reset:"tsx src/node/cli/index.ts reset","test:e2e":"tsx src/node/cli/index.ts test:e2e","test:unit":"tsx src/node/cli/index.ts test:unit"},dependencies:{"@antfu/eslint-config":"4.15.0","@apollo/client":"3.13.8","@apollo/server":"4.12.2","@dotenvx/dotenvx":"1.45.1","@eddeee888/gcg-typescript-resolver-files":"0.12.1","@eslint-react/eslint-plugin":"1.52.2","@graphql-codegen/cli":"5.0.7","@graphql-codegen/client-preset":"4.8.2","@nestjs/common":"11.1.3","@nestjs/core":"11.1.3","@next/eslint-plugin-next":"15.3.4","@testing-library/jest-dom":"6.6.3","@testing-library/react":"16.3.0","@vitejs/plugin-react-swc":"3.10.2","@vitest/browser":"3.2.4","body-parser":"2.2.0",chalk:"5.4.1",clsx:"2.1.1",compression:"1.8.0",consola:"3.4.2","cookie-parser":"1.4.7",cors:"2.8.5","crypto-js":"4.2.0","date-fns":"4.1.0",envalid:"8.0.0","eslint-config-next":"15.3.4","eslint-plugin-format":"1.0.1","eslint-plugin-react-hooks":"5.2.0","eslint-plugin-react-refresh":"0.4.20",express:"4.21.2","express-session":"1.18.1","express-useragent":"1.0.15","fs-extra":"11.3.0",globals:"16.2.0",graphql:"16.11.0","graphql-ws":"6.0.5",i18next:"25.2.1",jsdom:"26.1.0",localforage:"1.10.0","migrate-mongo":"12.1.3",mongodb:"6.17.0",mongoose:"8.16.0","mongoose-aggregate-paginate-v2":"1.1.4","mongoose-paginate-v2":"1.9.1","next-intl":"4.1.0","node-fetch":"3.3.2","node-persist":"4.0.4",playwright:"1.53.1",qs:"6.14.0",react:"19.1.0","react-dom":"19.1.0","react-hot-toast":"2.5.2","react-i18next":"15.5.3","react-icons":"5.5.0",sass:"1.89.2",slugify:"1.6.6",unorm:"1.6.0",uuid:"11.1.0",vite:"6.3.5",ws:"8.18.2",yargs:"18.0.0"},devDependencies:{"@commitlint/cli":"19.8.1","@commitlint/config-conventional":"19.8.1","@eslint/config-inspector":"1.1.0","@microsoft/api-extractor":"7.52.8","@types/body-parser":"1.19.6","@types/compression":"1.8.1","@types/cookie-parser":"1.4.9","@types/cors":"2.8.19","@types/crypto-js":"4.2.2","@types/express":"4.17.21","@types/express-session":"1.18.2","@types/express-useragent":"1.0.5","@types/fs-extra":"11.0.4","@types/migrate-mongo":"10.0.5","@types/node":"24.0.3","@types/node-persist":"3.1.8","@types/react":"19.1.8","@types/react-dom":"19.1.6","@types/unorm":"1.3.31","@types/uuid":"10.0.0","@types/ws":"8.18.1","@types/yargs":"17.0.33","esbuild-sass-plugin":"3.3.1",eslint:"9.29.0","lint-staged":"16.1.2","node-modules-inspector":"0.6.9",postcss:"8.5.6","postcss-modules":"6.0.1","simple-git-hooks":"2.13.0",tsup:"8.5.0",tsx:"4.20.3",typescript:"5.8.3",vitest:"3.2.4"},publishConfig:{access:"public",registry:"https://registry.npmjs.org/"}};var R=function(e){return e.CLI="CLI",e.STRING="STRING",e.FUNCTION="FUNCTION",e}({});var b=require("child_process"),G=N(require("process"),1),P=N(require("util"),1);var M=".cyberskill-storage";var w=N(require("@dotenvx/dotenvx"),1),j=require("envalid"),L=N(require("os"),1),U=N(require("path"),1),k=N(require("process"),1);var q=function(e){return e.PRODUCTION="production",e.STAGING="staging",e.DEVELOPMENT="development",e}({});var F=!1;function V(){k.default.env.NODE_ENV!==q.PRODUCTION&&!F&&(w.default.config(),F=!0)}C(V,"loadEnvFile");function Y(){V();var e=(0,j.cleanEnv)(k.default.env,{CWD:(0,j.str)({default:k.default.cwd()}),DEBUG:(0,j.bool)({default:!1}),CYBERSKILL_STORAGE_DIRECTORY:(0,j.str)({default:U.default.join(L.default.homedir(),M)})});return{CWD:e.CWD,DEBUG:e.DEBUG,CYBERSKILL_STORAGE_DIRECTORY:e.CYBERSKILL_STORAGE_DIRECTORY}}C(Y,"getEnv");var B=function(e){return e.Error="error",e.Warning="warning",e}({});var K=N(require("chalk"),1),H=N(require("consola"),1),Q=require("graphql");var W={GRAPHQL_PARSE_FAILED:{CODE:"GRAPHQL_PARSE_FAILED",MESSAGE:"The GraphQL operation string contains a syntax error."},GRAPHQL_VALIDATION_FAILED:{CODE:"GRAPHQL_VALIDATION_FAILED",MESSAGE:"The GraphQL operation is not valid against the server's schema."},BAD_USER_INPUT:{CODE:"BAD_USER_INPUT",MESSAGE:"The GraphQL operation includes an invalid value for a field argument."},PERSISTED_QUERY_NOT_FOUND:{CODE:"PERSISTED_QUERY_NOT_FOUND",MESSAGE:"A client sent the hash of a query string to execute via automatic persisted queries, but the query was not in the APQ cache."},PERSISTED_QUERY_NOT_SUPPORTED:{CODE:"PERSISTED_QUERY_NOT_SUPPORTED",MESSAGE:"A client sent the hash of a query string to execute via automatic persisted queries, but the server has disabled APQ."},OPERATION_RESOLUTION_FAILURE:{CODE:"OPERATION_RESOLUTION_FAILURE",MESSAGE:"The request was parsed successfully and is valid against the server's schema, but the server couldn't resolve which operation to run. This occurs when a request containing multiple named operations doesn't specify which operation to run (i.e.,operationName), or if the named operation isn't included in the request."},CONTINUE:{CODE:100,MESSAGE:"Continue"},SWITCHING_PROTOCOLS:{CODE:101,MESSAGE:"Switching Protocols"},PROCESSING:{CODE:102,MESSAGE:"Processing"},OK:{CODE:200,MESSAGE:"OK"},CREATED:{CODE:201,MESSAGE:"Created"},ACCEPTED:{CODE:202,MESSAGE:"Accepted"},NON_AUTHORITATIVE_INFORMATION:{CODE:203,MESSAGE:"Non Authoritative Information"},NO_CONTENT:{CODE:204,MESSAGE:"No Content"},RESET_CONTENT:{CODE:205,MESSAGE:"Reset Content"},PARTIAL_CONTENT:{CODE:206,MESSAGE:"Partial Content"},MULTI_STATUS:{CODE:207,MESSAGE:"Multi-Status"},MULTIPLE_CHOICES:{CODE:300,MESSAGE:"Multiple Choices"},MOVED_PERMANENTLY:{CODE:301,MESSAGE:"Moved Permanently"},MOVED_TEMPORARILY:{CODE:302,MESSAGE:"Moved Temporarily"},SEE_OTHER:{CODE:303,MESSAGE:"See Other"},NOT_MODIFIED:{CODE:304,MESSAGE:"Not Modified"},USE_PROXY:{CODE:305,MESSAGE:"Use Proxy"},TEMPORARY_REDIRECT:{CODE:307,MESSAGE:"Temporary Redirect"},PERMANENT_REDIRECT:{CODE:308,MESSAGE:"Permanent Redirect"},BAD_REQUEST:{CODE:400,MESSAGE:"Bad Request"},UNAUTHORIZED:{CODE:401,MESSAGE:"Unauthorized"},PAYMENT_REQUIRED:{CODE:402,MESSAGE:"Payment Required"},FORBIDDEN:{CODE:403,MESSAGE:"Forbidden"},NOT_FOUND:{CODE:404,MESSAGE:"Not Found"},METHOD_NOT_ALLOWED:{CODE:405,MESSAGE:"Method Not Allowed"},NOT_ACCEPTABLE:{CODE:406,MESSAGE:"Not Acceptable"},PROXY_AUTHENTICATION_REQUIRED:{CODE:407,MESSAGE:"Proxy Authentication Required"},REQUEST_TIMEOUT:{CODE:408,MESSAGE:"Request Timeout"},CONFLICT:{CODE:409,MESSAGE:"Conflict"},GONE:{CODE:410,MESSAGE:"Gone"},LENGTH_REQUIRED:{CODE:411,MESSAGE:"Length Required"},PRECONDITION_FAILED:{CODE:412,MESSAGE:"Precondition Failed"},REQUEST_TOO_LONG:{CODE:413,MESSAGE:"Request Entity Too Large"},REQUEST_URI_TOO_LONG:{CODE:414,MESSAGE:"Request-URI Too Long"},UNSUPPORTED_MEDIA_TYPE:{CODE:415,MESSAGE:"Unsupported Media Type"},REQUESTED_RANGE_NOT_SATISFIABLE:{CODE:416,MESSAGE:"Requested Range Not Satisfiable"},EXPECTATION_FAILED:{CODE:417,MESSAGE:"Expectation Failed"},IM_A_TEAPOT:{CODE:418,MESSAGE:"I'm a teapot"},INSUFFICIENT_SPACE_ON_RESOURCE:{CODE:419,MESSAGE:"Insufficient Space on Resource"},METHOD_FAILURE:{CODE:420,MESSAGE:"Method Failure"},MISDIRECTED_REQUEST:{CODE:421,MESSAGE:"Misdirected Request"},UNPROCESSABLE_ENTITY:{CODE:422,MESSAGE:"Unprocessable Entity"},LOCKED:{CODE:423,MESSAGE:"Locked"},FAILED_DEPENDENCY:{CODE:424,MESSAGE:"Failed Dependency"},PRECONDITION_REQUIRED:{CODE:428,MESSAGE:"Precondition Required"},TOO_MANY_REQUESTS:{CODE:429,MESSAGE:"Too Many Requests"},REQUEST_HEADER_FIELDS_TOO_LARGE:{CODE:431,MESSAGE:"Request Header Fields Too Large"},UNAVAILABLE_FOR_LEGAL_REASONS:{CODE:451,MESSAGE:"Unavailable For Legal Reasons"},INTERNAL_SERVER_ERROR:{CODE:500,MESSAGE:"Internal Server Error"},NOT_IMPLEMENTED:{CODE:501,MESSAGE:"Not Implemented"},BAD_GATEWAY:{CODE:502,MESSAGE:"Bad Gateway"},SERVICE_UNAVAILABLE:{CODE:503,MESSAGE:"Service Unavailable"},GATEWAY_TIMEOUT:{CODE:504,MESSAGE:"Gateway Timeout"},HTTP_VERSION_NOT_SUPPORTED:{CODE:505,MESSAGE:"HTTP Version Not Supported"},INSUFFICIENT_STORAGE:{CODE:507,MESSAGE:"Insufficient Storage"},NETWORK_AUTHENTICATION_REQUIRED:{CODE:511,MESSAGE:"Network Authentication Required"}};var J=Y();J.DEBUG||(H.default.level=4);function $(e){var t=K.default[e];return typeof t=="function"?t:K.default.green}C($,"chalkKeyword");var z={silent:H.default.silent,level:H.default.level,fatal:H.default.fatal,error:H.default.error,warn:H.default.warn,log:H.default.log,info:H.default.info,success:H.default.success,ready:H.default.ready,start:H.default.start,box:H.default.box,debug:H.default.debug,trace:H.default.trace,verbose:H.default.verbose,printBoxedLog:function e(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"red";if(!(t===null||t===void 0?void 0:t.length)){H.default.box(K.default.green(e));return}t.forEach(function(e){var t=e.file,r=e.position,i=e.rule,s=e.message;H.default.log("".concat(K.default.gray("File:")," ").concat(K.default.blue("".concat(t).concat(r?":".concat(r):"")))),i&&H.default.log(" ".concat($(n)("Rule:")," ").concat(i)),H.default.log(" ".concat($(n)("Message:")," ").concat(s))}),H.default.box($(n)("".concat(e," : ").concat(t.length))),H.default.log(K.default.gray("─".repeat(40)))}};function X(e,t){var n=t!==null&&t!==void 0?t:{},r=n.shouldLog,i=r===void 0?!0:r,s=n.returnValue,a=n.callback,c=o(e,Error)?e:new Error(typeof e=="string"?e:"Unknown error");return i&&z.error(c.message),a&&typeof a=="function"&&a(c),s||{success:!1,message:c.message,code:W.INTERNAL_SERVER_ERROR.CODE}}C(X,"catchError");var Z=function(e){return e.DEPENDENCY="dependencies",e.DEV_DEPENDENCY="devDependencies",e.PEER_DEPENDENCY="peerDependencies",e.BUNDLE_DEPENDENCY="bundleDependencies",e.OPTIONAL_DEPENDENCY="optionalDependencies",e}({});var ee=N(require("node-fetch"),1);var et=N(require("fs-extra"),1),en=N(require("path"),1);var er=et.default,ei=er.lstatSync,es=er.readdirSync,eo=er.mkdirSync,ea=er.readFileSync,ec=er.unlinkSync,eu=er.statSync,el=et.default.readJsonSync;function ed(e,t,n){et.default.writeFileSync(e,t,n!==null&&n!==void 0?n:"utf-8")}C(ed,"writeFileSync");function ep(e,t,n){et.default.appendFileSync(e,t,n!==null&&n!==void 0?n:"utf-8")}C(ep,"appendFileSync");function eE(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}return t.every(function(e){return et.default.pathExistsSync(e)})}C(eE,"pathExistsSync");function ef(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}t.forEach(function(e){eE(e)&&et.default.removeSync(e)})}C(ef,"removeSync");var em=N(require("fs-extra"),1);var eg=N(require("path"),1);var ey=Y(),eh=eg.default;function ev(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}var r;return(r=eh).resolve.apply(r,[ey.CWD].concat(E(t)))}C(ev,"resolveWorkingPath");function eS(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}var r;return(r=eh).join.apply(r,E(t))}C(eS,"join");var eD=Y(),eO=eD.CWD,eC="@cyberskill/shared",eI="node_modules",eN="dist",eT="public",ex="package.json",eA="package-lock.json",e_="tsconfig.json",eR=".gitignore",eb=".simple-git-hooks.json",eG="pnpm-lock.yaml",eP=".git/hooks/",eM=".git/COMMIT_EDITMSG",ew=".migrate-mongo.config.js",ej=function(){var e=em.default.readJsonSync(ev(ex)).name===eC?eO:eS(eO,eI,eC);return eS(e,eN)}(),eL="cyberskill",eU="src/node/cli/index.ts",ek="eslint",eq="eslint",eF="vitest";var eV="vitest",eY="@commitlint/cli",eB="@commitlint/config-conventional",eK="commitlint",eH="lint-staged",eQ="lint-staged",eW="typescript",eJ="tsc",e$="tsx",ez="git",eX="pnpm",eZ="pnpm exec",e0="simple-git-hooks",e1="simple-git-hooks",e2="@eslint/config-inspector",e4="eslint-config-inspector",e3="node-modules-inspector",e5="node-modules-inspector",e8="migrate-mongo",e6="./node_modules/migrate-mongo/bin/migrate-mongo",e7={CYBERSKILL_DIRECTORY:ej,WORKING_DIRECTORY:eO,PUBLIC_DIRECTORY:ev(eT),TS_CONFIG:ev(e_),GIT_IGNORE:ev(eR),GIT_HOOK:ev(eP),GIT_COMMIT_MSG:ev(eM),SIMPLE_GIT_HOOKS_JSON:ev(eb),PACKAGE_JSON:ev(ex),PACKAGE_LOCK_JSON:ev(eA),PNPM_LOCK_YAML:ev(eG),NODE_MODULES:ev(eI),MIGRATE_MONGO_CONFIG:ev(ew),LINT_STAGED_CONFIG:ev("".concat(ej,"/config/lint-staged/index.js")),COMMITLINT_CONFIG:ev("".concat(ej,"/config/commitlint/index.js")),VITEST_UNIT_CONFIG:ev("".concat(ej,"/config/vitest/vitest.unit.js")),VITEST_UNIT_SETUP_CONFIG:ev("".concat(ej,"/config/vitest/vitest.unit.setup.ts")),VITEST_E2E_CONFIG:ev("".concat(ej,"/config/vitest/vitest.e2e.js"))};function e9(e){var t=e.isCurrentProject;return d({"pre-commit":eQ,"commit-msg":eK},t&&{"pre-push":tD("".concat(ez," pull"))})}C(e9,"createGitHooksConfig");function te(e){var t=e.type,n=e.packages,r=e.command;var s=n===null||n===void 0?void 0:n.reduce(function(e,t){return e.some(function(e){return e.name===t.name})||e.push(t),e},[]);return function(){return i(function(){var e;return g(this,function(n){switch(n.label){case 0:switch(t){case R.CLI:return[3,1];case R.STRING:return[3,4]}return[3,5];case 1:e=s===null||s===void 0?void 0:s.length;if(!e)return[3,3];return[4,ta(s,{install:!0})];case 2:e=n.sent();n.label=3;case 3:return[2,(e,tC(tD("".concat(eZ," ").concat(r))))];case 4:return[2,tC(tD(r))];case 5:throw new Error("Unsupported command type");case 6:return[2]}})})()}}C(te,"buildCommand");var tt={simpleGitHooks:te({type:R.CLI,packages:[{name:e0,type:Z.DEV_DEPENDENCY}],command:e1}),eslintInspect:te({type:R.CLI,packages:[{name:e2,type:Z.DEV_DEPENDENCY}],command:e4}),nodeModulesInspect:te({type:R.CLI,packages:[{name:e3,type:Z.DEV_DEPENDENCY}],command:e5}),eslintCheck:te({type:R.CLI,packages:[{name:ek,type:Z.DEV_DEPENDENCY}],command:"".concat(eq," ").concat(e7.WORKING_DIRECTORY," --no-cache")}),eslintFix:te({type:R.CLI,packages:[{name:ek,type:Z.DEV_DEPENDENCY}],command:"".concat(eq," ").concat(e7.WORKING_DIRECTORY," --fix --no-cache")}),typescriptCheck:te({type:R.CLI,packages:[{name:eW,type:Z.DEV_DEPENDENCY}],command:"".concat(eJ," -p ").concat(e7.TS_CONFIG," --noEmit")}),testUnit:te({type:R.CLI,packages:[{name:eF,type:Z.DEV_DEPENDENCY}],command:"".concat(eV," --config ").concat(e7.VITEST_UNIT_CONFIG)}),testE2e:te({type:R.CLI,packages:[{name:eF,type:Z.DEV_DEPENDENCY}],command:"".concat(eV," --config ").concat(e7.VITEST_E2E_CONFIG)}),mongoMigrateCreate:C(function(e){return te({type:R.CLI,packages:[{name:e$,type:Z.DEPENDENCY},{name:e8,type:Z.DEPENDENCY}],command:"".concat(e$," ").concat(e6," create ").concat(e," -f ").concat(e7.MIGRATE_MONGO_CONFIG)})()},"mongoMigrateCreate"),mongoMigrateUp:te({type:R.CLI,packages:[{name:e$,type:Z.DEPENDENCY},{name:e8,type:Z.DEPENDENCY}],command:"".concat(e$," ").concat(e6," up -f ").concat(e7.MIGRATE_MONGO_CONFIG)}),mongoMigrateDown:te({type:R.CLI,packages:[{name:e$,type:Z.DEPENDENCY},{name:e8,type:Z.DEPENDENCY}],command:"".concat(e$," ").concat(e6," down -f ").concat(e7.MIGRATE_MONGO_CONFIG)}),commitLint:te({type:R.CLI,packages:[{name:eY,type:Z.DEV_DEPENDENCY},{name:eB,type:Z.DEV_DEPENDENCY}],command:"".concat(eK," --edit ").concat(e7.GIT_COMMIT_MSG," --config ").concat(e7.COMMITLINT_CONFIG)}),lintStaged:te({type:R.CLI,packages:[{name:eH,type:Z.DEV_DEPENDENCY}],command:"".concat(eQ," --config ").concat(e7.LINT_STAGED_CONFIG)}),configureGitHook:te({type:R.STRING,command:"".concat(ez," config core.hooksPath ").concat(e7.GIT_HOOK)}),build:te({type:R.STRING,command:"".concat(eX," run --if-present build")}),pnpmInstallStandard:te({type:R.STRING,command:"".concat(eX," install --ignore-scripts")}),pnpmInstallLegacy:te({type:R.STRING,command:"".concat(eX," install --ignore-scripts --legacy-peer-deps")}),pnpmInstallForce:te({type:R.STRING,command:"".concat(eX," install --ignore-scripts --force")}),pnpmPruneStore:te({type:R.STRING,command:"".concat(eX," store prune")}),pnpmCleanCache:te({type:R.STRING,command:"".concat(eX," cache delete")})};var tn=Y();function tr(e){return i(function(){var t,n,r,i;return g(this,function(s){switch(s.label){case 0:s.trys.push([0,3,,4]);return[4,(0,ee.default)("https://registry.npmjs.org/".concat(e,"/latest"))];case 1:t=s.sent();if(!t.ok)throw new Error("Failed to fetch latest version: ".concat(t.status," ").concat(t.statusText));return[4,t.json()];case 2:n=s.sent(),r=n.version;return[2,{success:!0,result:r}];case 3:i=s.sent();return[2,X(i)];case 4:return[2]}})})()}C(tr,"getLatestPackageVersion");function ti(e){return i(function(){var t,n,r,i,s,o,a,c,u,l,d,p,E,f,m,y,h,v,S,D,O,C,I,N;return g(this,function(g){switch(g.label){case 0:g.trys.push([0,2,,3]);if(!e){if(eE(e7.PACKAGE_JSON)){t=el(e7.PACKAGE_JSON),n=t.name,r=n===void 0?"":n,i=t.version,s=i===void 0?"":i;return[2,{success:!0,result:{name:r,currentVersion:s,latestVersion:s,isCurrentProject:!0,isInstalled:!0,isUpToDate:!0,isDependency:!1,isDevDependency:!1,installedPath:e7.PACKAGE_JSON,file:t}}]}return[2,{success:!0,result:{name:"",currentVersion:"",latestVersion:"",isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:!1,isDevDependency:!1,installedPath:"",file:{}}}]}if(!eE(e7.PACKAGE_JSON))return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:"",isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:e.type===Z.DEPENDENCY,isDevDependency:e.type===Z.DEV_DEPENDENCY,installedPath:"",file:{}}}];o=el(e7.PACKAGE_JSON),a=o.name,c=o.version,u=c===void 0?"":c,l=o.dependencies,d=l===void 0?{}:l,p=o.devDependencies,E=p===void 0?{}:p;if(e.name===a)return[2,{success:!0,result:{name:a,currentVersion:u,latestVersion:u,isCurrentProject:!0,isInstalled:!0,isUpToDate:!0,isDependency:e.type===Z.DEPENDENCY,isDevDependency:e.type===Z.DEV_DEPENDENCY,installedPath:e7.PACKAGE_JSON,file:o}}];f=e.name in d,m=e.name in E;return[4,tr(e.name)];case 1:y=g.sent();if(!y.success)return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:"",isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:f,isDevDependency:m,installedPath:"",file:{}}}];if(!f&&!m)return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:y.result,isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:e.type===Z.DEPENDENCY,isDevDependency:e.type===Z.DEV_DEPENDENCY,installedPath:"",file:{}}}];S=(v=(h=d[e.name])!==null&&h!==void 0?h:E[e.name])!==null&&v!==void 0?v:"",D=eS(tn.CWD,eI,e.name,ex);if(!eE(D))return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:y.result,isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:f,isDevDependency:m,installedPath:"",file:{}}}];O=el(D),C=O.version,I=C===void 0?"":C;return[2,S!==I?{success:!0,result:{name:e.name,currentVersion:I||S,latestVersion:y.result,isCurrentProject:!1,isInstalled:!0,isUpToDate:!1,isDependency:f,isDevDependency:m,installedPath:D,file:O}}:{success:!0,result:{name:e.name,currentVersion:S,latestVersion:y.result,isCurrentProject:!1,isInstalled:!0,isUpToDate:S===y.result,isDependency:f,isDevDependency:m,installedPath:D,file:O}}];case 2:N=g.sent();return[2,X(N)];case 3:return[2]}})})()}C(ti,"getPackage");function ts(e){return i(function(){var t,n,r,i,s;return g(this,function(o){try{;r=el(e7.PACKAGE_JSON),i=(t=r.dependencies)!==null&&t!==void 0?t:{},s=(n=r.devDependencies)!==null&&n!==void 0?n:{};e.isDependency?i[e.name]=e.latestVersion:e.isDevDependency&&(s[e.name]=e.latestVersion),ed(e7.PACKAGE_JSON,JSON.stringify(r,null,4)),z.info('Updated "'.concat(e.name,'" to version ').concat(e.latestVersion))}catch(e){X(e)}return[2]})})()}C(ts,"updatePackage");function to(){return i(function(){var e,t,n,r,i,s,o,a,c,u,l,d,p;return g(this,function(E){switch(E.label){case 0:E.trys.push([0,12,,13]);e=[{command:C(function(){return tt.pnpmInstallStandard()},"command"),message:"Installing dependencies (standard)"},{command:C(function(){return tt.pnpmInstallLegacy()},"command"),message:"Retrying with legacy peer dependencies"},{command:C(function(){return tt.pnpmInstallForce()},"command"),message:"Retrying with force install"}];t=true,n=false,r=undefined;E.label=1;case 1:E.trys.push([1,9,10,11]);i=e[Symbol.iterator]();E.label=2;case 2:if(!!(t=(s=i.next()).done))return[3,8];o=s.value,a=o.command,c=o.message;E.label=3;case 3:E.trys.push([3,6,,7]);return[4,a()];case 4:u=E.sent();return[4,tN("".concat(c," using: ").concat(u),u)];case 5:E.sent();return[2];case 6:l=E.sent();X(l);return[3,7];case 7:t=true;return[3,2];case 8:return[3,11];case 9:d=E.sent();n=true;r=d;return[3,11];case 10:try{if(!t&&i.return!=null){i.return()}}finally{if(n){throw r}}return[7];case 11:return[3,13];case 12:p=E.sent();X(p);return[3,13];case 13:return[2]}})})()}C(to,"installDependencies");function ta(e,t){return i(function(){var n,r,i,s,o,a,c,u,l,d,p,f,m,y,h,v,S;return g(this,function(g){switch(g.label){case 0:g.trys.push([0,15,,16]);if(!eE(e7.PACKAGE_JSON)){z.error("package.json not found. Aborting setup.");return[2]}return[4,Promise.all(e.map(ti))];case 1:i=g.sent().filter(function(e){return e.success&&!!e.result&&!e.result.isCurrentProject}).map(function(e){return e.result}),s=i.filter(function(e){return!e.isInstalled}),o=i.filter(function(e){return!e.isUpToDate}),a=[];(t===null||t===void 0?void 0:t.install)&&s.length>0&&(n=a).push.apply(n,E(s.map(ts))),(t===null||t===void 0?void 0:t.update)&&o.length>0&&(r=a).push.apply(r,E(o.map(ts)));c=a.length>0;if(!c)return[3,6];return[4,Promise.all(a)];case 2:g.sent();return[4,to()];case 3:g.sent();u=["Running ESLint with auto-fix"];return[4,tt.eslintFix()];case 4:return[4,tN.apply(void 0,u.concat([g.sent()]))];case 5:c=g.sent();g.label=6;case 6:c;d=true,p=false,f=undefined;g.label=7;case 7:g.trys.push([7,12,13,14]);m=((l=t===null||t===void 0?void 0:t.callbacks)!==null&&l!==void 0?l:[])[Symbol.iterator]();g.label=8;case 8:if(!!(d=(y=m.next()).done))return[3,11];h=y.value;return[4,h()];case 9:g.sent();g.label=10;case 10:d=true;return[3,8];case 11:return[3,14];case 12:v=g.sent();p=true;f=v;return[3,14];case 13:try{if(!d&&m.return!=null){m.return()}}finally{if(p){throw f}}return[7];case 14:return[3,16];case 15:S=g.sent();X(S);return[3,16];case 16:return[2]}})})()}C(ta,"setupPackages");var tc=N(require("node-persist"),1);var tu=Y();function tl(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=tc.default.defaultInstance;if(e)return[3,2];return[4,tc.default.init({dir:tu.CYBERSKILL_STORAGE_DIRECTORY})];case 1:e=t.sent();t.label=2;case 2:e;return[2]}})})()}C(tl,"initNodePersist");var td={get:function e(e){return i(function(){var t,n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,3,,4]);return[4,tl()];case 1:r.sent();return[4,tc.default.getItem(e)];case 2:return[2,(t=r.sent())!==null&&t!==void 0?t:null];case 3:n=r.sent();return[2,X(n,{returnValue:null})];case 4:return[2]}})})()},set:function e(e,t){return i(function(){var n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,3,,4]);return[4,tl()];case 1:r.sent();return[4,tc.default.setItem(e,t)];case 2:r.sent();return[3,4];case 3:n=r.sent();X(n);return[3,4];case 4:return[2]}})})()},remove:function e(e){return i(function(){var t;return g(this,function(n){switch(n.label){case 0:n.trys.push([0,3,,4]);return[4,tl()];case 1:n.sent();return[4,tc.default.removeItem(e)];case 2:n.sent();return[3,4];case 3:t=n.sent();X(t);return[3,4];case 4:return[2]}})})()},keys:function e(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:n.trys.push([0,3,,4]);return[4,tl()];case 1:n.sent();return[4,tc.default.keys()];case 2:e=n.sent();return[2,Array.isArray(e)?e:(z.warn("[Storage:keys] Invalid keys response:",e),[])];case 3:t=n.sent();return[2,X(t,{returnValue:[]})];case 4:return[2]}})})()},getLogLink:function e(e){return i(function(){return g(this,function(t){try{return[2,"".concat(tu.CYBERSKILL_STORAGE_DIRECTORY," (key: ").concat(e,")")]}catch(e){return[2,X(e,{returnValue:null})]}return[2]})})()}};var tp=Y(),tE=P.promisify(b.exec);function tf(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:return[4,ti()];case 1:e=t.sent();return[2,e.success?e.result.name:Date.now().toString()]}})})()}C(tf,"getPackageName");function tm(e){return i(function(){var t,n;return g(this,function(r){switch(r.label){case 0:if(e.length===0)return[2];return[4,tf()];case 1:t=r.sent();r.label=2;case 2:r.trys.push([2,4,,5]);return[4,td.set(t,e)];case 3:r.sent(),setTimeout(function(){return i(function(){var e;return g(this,function(n){switch(n.label){case 0:return[4,td.getLogLink(t)];case 1:e=n.sent();e&&z.info("\uD83D\uDCC2 Open the error list manually: ".concat(e));return[2]}})})()},0);return[3,5];case 4:n=r.sent();X(n);return[3,5];case 5:return[2]}})})()}C(tm,"saveErrorListToStorage");function tg(){return i(function(){var e,t,n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,3,,4]);return[4,tf()];case 1:e=r.sent();return[4,td.get(e)];case 2:return[2,(t=r.sent())!==null&&t!==void 0?t:[]];case 3:n=r.sent();return[2,X(n,{returnValue:[]})];case 4:return[2]}})})()}C(tg,"getStoredErrorLists");function ty(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:n.trys.push([0,3,,4]);return[4,tf()];case 1:e=n.sent();return[4,td.remove(e)];case 2:n.sent();return[3,4];case 3:t=n.sent();X(t);return[3,4];case 4:return[2]}})})()}C(ty,"clearAllErrorLists");function th(e){var t=[],n=[],r="",i=/^\s*(\d+):(\d+)\s+(error|warning)\s+(.+?)\s+(\S+)$/,s=/^(.+?)\((\d+),(\d+)\):\s+(error|warning)\s+TS\d+:\s+(\S.+)$/,o=/^✖\s+(.*?)\s+\[(.*?)\]$/;e.split("\n").forEach(function(e){if(e.startsWith("/"))r=e.trim();else{var a,c,u,l,d;var p=i.exec(e)||[],E=s.exec(e)||[],f=o.exec(e)||[];var m,g,y,h,v,S;p.length&&r?t.push({file:r,position:"".concat(p[1],":").concat(p[2]),type:p[3]===B.Error?B.Error:B.Warning,message:(m=p===null||p===void 0?void 0:(a=p[4])===null||a===void 0?void 0:a.trim())!==null&&m!==void 0?m:"",rule:(g=p===null||p===void 0?void 0:(c=p[5])===null||c===void 0?void 0:c.trim())!==null&&g!==void 0?g:""}):E.length?t.push({file:(y=E===null||E===void 0?void 0:E[1])!==null&&y!==void 0?y:"",position:"".concat(E[2],":").concat(E[3]),type:E[4]===B.Error?B.Error:B.Warning,message:(h=E===null||E===void 0?void 0:(u=E[5])===null||u===void 0?void 0:u.trim())!==null&&h!==void 0?h:""}):f.length?t.push({file:"commitlint",type:B.Error,message:(v=f===null||f===void 0?void 0:(l=f[1])===null||l===void 0?void 0:l.trim())!==null&&v!==void 0?v:"",rule:(S=f===null||f===void 0?void 0:(d=f[2])===null||d===void 0?void 0:d.trim())!==null&&S!==void 0?S:""}):n.push(e.trim())}}),t.length&&tm(t),tp.DEBUG&&n.length&&(z.warn("Unmatched lines:"),n.forEach(function(e){return z.info(" ".concat(e))}))}C(th,"parseTextErrors");function tv(e){try{var t=JSON.parse(e),n=[];t.forEach(function(e){var t=e.filePath,r=e.messages;r.forEach(function(e){var r=e.severity,i=e.line,s=e.column,o=e.ruleId,a=e.message;n.push({type:r===2?B.Error:B.Warning,file:t,position:"".concat(i,":").concat(s),rule:o,message:a})})}),n.length&&tm(n)}catch(t){th(e)}}C(tv,"parseCommandOutput");function tS(e){return i(function(e){var t,n,r,i,s,o,a,c,u;var l=arguments;return g(this,function(d){switch(d.label){case 0:t=l.length>1&&l[1]!==void 0?l[1]:tv;n=new AbortController;G.default.on("SIGINT",function(){z.warn("Process interrupted. Terminating..."),n.abort(),G.default.exit()});d.label=1;case 1:d.trys.push([1,4,,5]);if(!(typeof e=="string"))return[3,3];return[4,tE(e,{maxBuffer:0x6400000,signal:n.signal})];case 2:r=d.sent(),i=r.stdout,s=r.stderr;[i,s].forEach(function(e){return e&&t(e)});d.label=3;case 3:return[3,5];case 4:o=d.sent();a=o.stdout,c=o.stderr,u=o.message;[a,c].forEach(function(e){return e&&t(e)}),!c&&!a&&z.error("Command failed: ".concat(u));return[3,5];case 5:return[2]}})}).apply(this,arguments)}C(tS,"executeCommand");function tD(e){return{raw:!0,cmd:e}}C(tD,"rawCommand");function tO(e,t){return(t===null||t===void 0?void 0:t.isCurrentProject)?"".concat(eZ," ").concat(e$," ").concat(eU," ").concat(e):"".concat(eZ," ").concat(eL," ").concat(e)}C(tO,"formatCLI");function tC(e,t){return typeof e=="function"?tO(e(t),t):(typeof e==="undefined"?"undefined":f(e))=="object"&&(e===null||e===void 0?void 0:e.raw)===!0?e.cmd:typeof e=="string"?tO(e,t):e}C(tC,"formatCommand");function tI(e){return i(function(){var t,n,r;return g(this,function(i){switch(i.label){case 0:return[4,ti({name:eC})];case 1:t=i.sent();if(t.success){n={isCurrentProject:t.result.isCurrentProject},r=typeof e=="function"?e(n):e;return[2,Object.fromEntries(Object.entries(r).map(function(e){var t=p(e,2),r=t[0],i=t[1];return[r,tC(i,n)]}))]}return[2]}})})()}C(tI,"resolveCommands");function tN(e,t){return i(function(){var n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,2,,3]);z.start("".concat(e)),tp.DEBUG&&z.info("→ ".concat(t));return[4,tS(t)];case 1:r.sent(),z.success("".concat(e," done."));return[3,3];case 2:n=r.sent();X(n);return[3,3];case 3:return[2]}})})()}C(tN,"runCommand");function tT(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:if(!eE(e7.TS_CONFIG))return[3,3];t=["Performing TypeScript validation"];return[4,tt.typescriptCheck()];case 1:return[4,tN.apply(void 0,t.concat([n.sent()]))];case 2:e=n.sent();return[3,4];case 3:e=z.warn("No TypeScript configuration found. Skipping type check.");n.label=4;case 4:e;return[2]}})})()}C(tT,"checkTypescript");function tx(){return i(function(){var e,t,n,r;var i=arguments;return g(this,function(s){switch(s.label){case 0:e=i.length>0&&i[0]!==void 0?i[0]:!1;if(!e)return[3,3];n=["Running ESLint with auto-fix"];return[4,tt.eslintFix()];case 1:return[4,tN.apply(void 0,n.concat([s.sent()]))];case 2:t=s.sent();return[3,6];case 3:r=["Running ESLint check"];return[4,tt.eslintCheck()];case 4:return[4,tN.apply(void 0,r.concat([s.sent()]))];case 5:t=s.sent();s.label=6;case 6:t;return[2]}})}).apply(this,arguments)}C(tx,"checkEslint");function tA(e,t){if(!t.length)return;var n=e==="Errors"?"red":"yellow";z.printBoxedLog(e==="Errors"?"✖ Errors":"⚠ Warnings",t,n)}C(tA,"printIssues");function t_(){return i(function(){return g(this,function(e){setTimeout(function(){return i(function(){var e,t,n;return g(this,function(r){switch(r.label){case 0:return[4,tg()];case 1:e=r.sent(),t=e.filter(function(e){return e.type===B.Error}),n=e.filter(function(e){return e.type===B.Warning});!t.length&&!n.length?z.printBoxedLog("✔ NO ISSUES FOUND",[],"green"):(tA("Warnings",n),tA("Errors",t),(t.length>0||n.length>0)&&T.default.exit(1));return[2]}})})()},0);return[2]})})()}C(t_,"showCheckResult");function tR(){return i(function(){var e,t,n,r;return g(this,function(i){switch(i.label){case 0:return[4,ty()];case 1:i.sent();return[4,ti({name:eC})];case 2:e=i.sent();if(!e.success){z.error("Failed to retrieve package information. Aborting lint-staged.");return[2]}t=e.result.isCurrentProject;if(!t)return[3,5];n=["Building package: ".concat(eC)];return[4,tt.build()];case 3:return[4,tN.apply(void 0,n.concat([i.sent()]))];case 4:t=i.sent();i.label=5;case 5:t;r=["Executing lint-staged"];return[4,tt.lintStaged()];case 6:return[4,tN.apply(void 0,r.concat([i.sent()]))];case 7:i.sent(),t_();return[2]}})})()}C(tR,"lintStaged");function tb(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Inspecting ESLint configuration"];return[4,tt.eslintInspect()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tb,"inspectLint");function tG(){return i(function(){return g(this,function(e){switch(e.label){case 0:return[4,ty()];case 1:e.sent();return[4,Promise.all([tT(),tx()])];case 2:e.sent(),t_();return[2]}})})()}C(tG,"lintCheck");function tP(){return i(function(){return g(this,function(e){switch(e.label){case 0:return[4,ty()];case 1:e.sent();return[4,Promise.all([tT(),tx(!0)])];case 2:e.sent(),t_();return[2]}})})()}C(tP,"lintFix");function tM(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:return[4,ty()];case 1:t.sent();e=["Validating commit message"];return[4,tt.commitLint()];case 2:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 3:t.sent(),t_();return[2]}})})()}C(tM,"commitLint");function tw(){return i(function(){var e,t,n,r;return g(this,function(i){switch(i.label){case 0:e=["Configuring Git hooks"];return[4,tt.configureGitHook()];case 1:return[4,tN.apply(void 0,e.concat([i.sent()]))];case 2:i.sent(),ef(e7.GIT_HOOK);return[4,tI(e9)];case 3:t=i.sent();ed(e7.SIMPLE_GIT_HOOKS_JSON,JSON.stringify(t,null,4));n="\n".concat(eb,"\n");eE(e7.GIT_IGNORE)?ea(e7.GIT_IGNORE,"utf-8").split("\n").includes(eb)||ep(e7.GIT_IGNORE,n):ed(e7.GIT_IGNORE,n);r=["Setting up simple-git-hooks"];return[4,tt.simpleGitHooks()];case 4:return[4,tN.apply(void 0,r.concat([i.sent()]))];case 5:i.sent();return[2]}})})()}C(tw,"setupGitHook");function tj(){return i(function(){return g(this,function(e){switch(e.label){case 0:return[4,to()];case 1:e.sent();return[4,tw()];case 2:e.sent();return[2]}})})()}C(tj,"ready");function tL(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:ef(e7.NODE_MODULES,e7.PNPM_LOCK_YAML);e=["Pruning pnpm store"];return[4,tt.pnpmPruneStore()];case 1:return[4,tN.apply(void 0,e.concat([n.sent()]))];case 2:n.sent();t=["Clearing pnpm cache"];return[4,tt.pnpmCleanCache()];case 3:return[4,tN.apply(void 0,t.concat([n.sent()]))];case 4:n.sent();return[4,to()];case 5:n.sent();return[4,tw()];case 6:n.sent();return[2]}})})()}C(tL,"reset");function tU(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Inspecting project dependencies"];return[4,tt.nodeModulesInspect()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tU,"inspect");function tk(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Running unit tests"];return[4,tt.testUnit()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tk,"testUnit");function tq(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Running end-to-end tests"];return[4,tt.testE2e()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tq,"testE2E");function tF(e){return i(function(){var t;return g(this,function(n){switch(n.label){case 0:t=["Creating MongoDB migration"];return[4,tt.mongoMigrateCreate(e)];case 1:return[4,tN.apply(void 0,t.concat([n.sent()]))];case 2:n.sent();return[2]}})})()}C(tF,"mongoMigrateCreate");function tV(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Running MongoDB migrations"];return[4,tt.mongoMigrateUp()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tV,"mongoMigrateUp");function tY(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Rolling back MongoDB migration"];return[4,tt.mongoMigrateDown()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tY,"mongoMigrateDown");(function(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:t.trys.push([0,2,,3]);return[4,(0,A.default)((0,x.hideBin)(T.default.argv)).scriptName(eL).usage("$0 <command> [options]").command("lint","Check code for linting issues",tG).command("lint:fix","Fix linting issues automatically",tP).command("lint:inspect","View active ESLint configuration",tb).command("lint-staged","Run lint checks on staged files",tR).command("commitlint","Validate commit message format",tM).command("ready","Initialize project and dependencies",tj).command("reset","Reset the project and reinstall dependencies",tL).command("inspect","Analyze installed project dependencies",tU).command("test:unit","Run unit test suite",tk).command("test:e2e","Run end-to-end test suite",tq).command("mongo:migrate:create <name>","Create a MongoDB migration",function(e){return e.positional("name",{describe:"Migration name",type:"string"})},function(e){return i(function(){return g(this,function(t){switch(t.label){case 0:if(!e.name){z.error("Migration name is required.");return[2]}return[4,tF(e.name)];case 1:t.sent();return[2]}})})()}).command("mongo:migrate:up","Apply all MongoDB migrations",tV).command("mongo:migrate:down","Rollback last MongoDB migration",tY).demandCommand(1,"Please specify a valid command.").strict().help().alias("h","help").alias("v","version").version(_.version).epilog('\uD83D\uDCA1 Tip: Use "--help" with any command to see options\n').parse()];case 1:t.sent();return[3,3];case 2:e=t.sent();X(e),T.default.exit(1);return[3,3];case 3:return[2]}})})()})();
|
|
2
|
+
"use strict";function e(e,t){if(t==null||t>e.length)t=e.length;for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function t(e){if(Array.isArray(e))return e}function n(t){if(Array.isArray(t))return e(t)}function r(e,t,n,r,i,s,o){try{var a=e[s](o);var c=a.value}catch(e){n(e);return}if(a.done){t(c)}else{Promise.resolve(c).then(r,i)}}function i(e){return function(){var t=this,n=arguments;return new Promise(function(i,s){var o=e.apply(t,n);function a(e){r(o,i,s,a,c,"next",e)}function c(e){r(o,i,s,a,c,"throw",e)}a(undefined)})}}function s(e,t,n){if(t in e){Object.defineProperty(e,t,{value:n,enumerable:true,configurable:true,writable:true})}else{e[t]=n}return e}function o(e,t){if(t!=null&&typeof Symbol!=="undefined"&&t[Symbol.hasInstance]){return!!t[Symbol.hasInstance](e)}else{return e instanceof t}}function a(e){if(typeof Symbol!=="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function c(e,t){var n=e==null?null:typeof Symbol!=="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(n==null)return;var r=[];var i=true;var s=false;var o,a;try{for(n=n.call(e);!(i=(o=n.next()).done);i=true){r.push(o.value);if(t&&r.length===t)break}}catch(e){s=true;a=e}finally{try{if(!i&&n["return"]!=null)n["return"]()}finally{if(s)throw a}}return r}function u(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function l(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function d(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};var r=Object.keys(n);if(typeof Object.getOwnPropertySymbols==="function"){r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))}r.forEach(function(t){s(e,t,n[t])})}return e}function p(e,n){return t(e)||c(e,n)||m(e,n)||u()}function E(e){return n(e)||a(e)||m(e)||l()}function f(e){"@swc/helpers - typeof";return e&&typeof Symbol!=="undefined"&&e.constructor===Symbol?"symbol":typeof e}function m(t,n){if(!t)return;if(typeof t==="string")return e(t,n);var r=Object.prototype.toString.call(t).slice(8,-1);if(r==="Object"&&t.constructor)r=t.constructor.name;if(r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return e(t,n)}function g(e,t){var n,r,i,s={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o=Object.create((typeof Iterator==="function"?Iterator:Object).prototype);return o.next=a(0),o["throw"]=a(1),o["return"]=a(2),typeof Symbol==="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(e){return function(t){return c([e,t])}}function c(a){if(n)throw new TypeError("Generator is already executing.");while(o&&(o=0,a[0]&&(s=0)),s)try{if(n=1,r&&(i=a[0]&2?r["return"]:a[0]?r["throw"]||((i=r["return"])&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;if(r=0,i)a=[a[0]&2,i.value];switch(a[0]){case 0:case 1:i=a;break;case 4:s.label++;return{value:a[1],done:false};case 5:s.label++;r=a[1];a=[0];continue;case 7:a=s.ops.pop();s.trys.pop();continue;default:if(!(i=s.trys,i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){s=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){s.label=a[1];break}if(a[0]===6&&s.label<i[1]){s.label=i[1];i=a;break}if(i&&s.label<i[2]){s.label=i[2];s.ops.push(a);break}if(i[2])s.ops.pop();s.trys.pop();continue}a=t.call(e,s)}catch(e){a=[6,e];r=0}finally{n=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var y=Object.create;var h=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var S=Object.getOwnPropertyNames;var D=Object.getPrototypeOf,O=Object.prototype.hasOwnProperty;var C=function(e,t){return h(e,"name",{value:t,configurable:!0})};var I=function(e,t,n,r){var i=true,s=false,o=undefined;if(t&&(typeof t==="undefined"?"undefined":f(t))=="object"||typeof t=="function")try{var a=function(){var i=u.value;!O.call(e,i)&&i!==n&&h(e,i,{get:function(){return t[i]},enumerable:!(r=v(t,i))||r.enumerable})};for(var c=S(t)[Symbol.iterator](),u;!(i=(u=c.next()).done);i=true)a()}catch(e){s=true;o=e}finally{try{if(!i&&c.return!=null){c.return()}}finally{if(s){throw o}}}return e};var N=function(e,t,n){return n=e!=null?y(D(e)):{},I(t||!e||!e.__esModule?h(n,"default",{value:e,enumerable:!0}):n,e)};var T=N(require("process"),1),x=require("yargs/helpers"),A=N(require("yargs/yargs"),1);var _={name:"@cyberskill/shared",type:"module",version:"1.186.0",description:"CyberSkill Shared",author:"Stephen Cheng",license:"MIT",homepage:"https://github.com/cyberskill-world/shared#readme",repository:{type:"git",url:"git+https://github.com/cyberskill-world/shared.git"},bugs:{url:"https://github.com/cyberskill-world/shared/issues"},exports:{".":{types:"./dist/index.d.ts",import:"./dist/index.js",require:"./dist/index.cjs"},"./config":{types:"./dist/config/index.d.ts",import:"./dist/config/index.js",require:"./dist/config/index.cjs"},"./config/commitlint":{types:"./dist/config/commitlint/index.d.ts",import:"./dist/config/commitlint/index.js",require:"./dist/config/commitlint/index.cjs"},"./config/env":{types:"./dist/config/env/index.d.ts",import:"./dist/config/env/index.js",require:"./dist/config/env/index.cjs"},"./config/eslint":{types:"./dist/config/eslint/index.d.ts",import:"./dist/config/eslint/index.js",require:"./dist/config/eslint/index.cjs"},"./config/graphql-codegen":{types:"./dist/config/graphql-codegen/index.d.ts",import:"./dist/config/graphql-codegen/index.js",require:"./dist/config/graphql-codegen/index.cjs"},"./config/lint-staged":{types:"./dist/config/lint-staged/index.d.ts",import:"./dist/config/lint-staged/index.js",require:"./dist/config/lint-staged/index.cjs"},"./config/vitest":{types:"./dist/config/vitest/index.d.ts",import:"./dist/config/vitest/index.js",require:"./dist/config/vitest/index.cjs"},"./constant":{types:"./dist/constant/index.d.ts",import:"./dist/constant/index.js",require:"./dist/constant/index.cjs"},"./node":{types:"./dist/node/index.d.ts",import:"./dist/node/index.js",require:"./dist/node/index.cjs"},"./node/apollo-server":{types:"./dist/node/apollo-server/index.d.ts",import:"./dist/node/apollo-server/index.js",require:"./dist/node/apollo-server/index.cjs"},"./node/cli":{types:"./dist/node/cli/index.d.ts",import:"./dist/node/cli/index.js",require:"./dist/node/cli/index.cjs"},"./node/command":{types:"./dist/node/command/index.d.ts",import:"./dist/node/command/index.js",require:"./dist/node/command/index.cjs"},"./node/express":{types:"./dist/node/express/index.d.ts",import:"./dist/node/express/index.js",require:"./dist/node/express/index.cjs"},"./node/fs":{types:"./dist/node/fs/index.d.ts",import:"./dist/node/fs/index.js",require:"./dist/node/fs/index.cjs"},"./node/log":{types:"./dist/node/log/index.d.ts",import:"./dist/node/log/index.js",require:"./dist/node/log/index.cjs"},"./node/mongo":{types:"./dist/node/mongo/index.d.ts",import:"./dist/node/mongo/index.js",require:"./dist/node/mongo/index.cjs"},"./node/package":{types:"./dist/node/package/index.d.ts",import:"./dist/node/package/index.js",require:"./dist/node/package/index.cjs"},"./node/path":{types:"./dist/node/path/index.d.ts",import:"./dist/node/path/index.js",require:"./dist/node/path/index.cjs"},"./node/storage":{types:"./dist/node/storage/index.d.ts",import:"./dist/node/storage/index.js",require:"./dist/node/storage/index.cjs"},"./node/ws":{types:"./dist/node/ws/index.d.ts",import:"./dist/node/ws/index.js",require:"./dist/node/ws/index.cjs"},"./react":{types:"./dist/react/index.d.ts",import:"./dist/react/index.js",require:"./dist/react/index.cjs"},"./react/apollo-client":{types:"./dist/react/apollo-client/index.d.ts",import:"./dist/react/apollo-client/index.js",require:"./dist/react/apollo-client/index.cjs"},"./react/apollo-error":{types:"./dist/react/apollo-error/index.d.ts",import:"./dist/react/apollo-error/index.js",require:"./dist/react/apollo-error/index.cjs"},"./react/i18next":{types:"./dist/react/i18next/index.d.ts",import:"./dist/react/i18next/index.js",require:"./dist/react/i18next/index.cjs"},"./react/loading":{types:"./dist/react/loading/index.d.ts",import:"./dist/react/loading/index.js",require:"./dist/react/loading/index.cjs"},"./react/log":{types:"./dist/react/log/index.d.ts",import:"./dist/react/log/index.js",require:"./dist/react/log/index.cjs"},"./react/next-intl":{types:"./dist/react/next-intl/index.d.ts",import:"./dist/react/next-intl/index.js",require:"./dist/react/next-intl/index.cjs"},"./react/storage":{types:"./dist/react/storage/index.d.ts",import:"./dist/react/storage/index.js",require:"./dist/react/storage/index.cjs"},"./react/toast":{types:"./dist/react/toast/index.d.ts",import:"./dist/react/toast/index.js",require:"./dist/react/toast/index.cjs"},"./react/index.css":{import:"./dist/react/index.css",require:"./dist/react/index.css"},"./typescript":{types:"./dist/typescript/index.d.ts",import:"./dist/typescript/index.js",require:"./dist/typescript/index.cjs"},"./util":{types:"./dist/util/index.d.ts",import:"./dist/util/index.js",require:"./dist/util/index.cjs"}},typesVersions:{"*":{config:["dist/config/index.d.ts"],constant:["dist/constant/index.d.ts"],node:["dist/node/index.d.ts"],react:["dist/react/index.d.ts"],typescript:["dist/typescript/index.d.ts"],util:["dist/util/index.d.ts"]}},bin:{cyberskill:"dist/node/cli/index.js"},files:["dist","public"],scripts:{build:"tsup",commitlint:"tsx src/node/cli/index.ts commitlint",dev:"tsup --watch",inspect:"tsx src/node/cli/index.ts inspect",lint:"tsx src/node/cli/index.ts lint","lint:fix":"tsx src/node/cli/index.ts lint:fix","lint:inspect":"tsx src/node/cli/index.ts lint:inspect",ready:"tsx src/node/cli/index.ts ready",reset:"tsx src/node/cli/index.ts reset","test:e2e":"tsx src/node/cli/index.ts test:e2e","test:unit":"tsx src/node/cli/index.ts test:unit"},dependencies:{"@antfu/eslint-config":"4.15.0","@apollo/client":"3.13.8","@apollo/server":"4.12.2","@dotenvx/dotenvx":"1.45.1","@eddeee888/gcg-typescript-resolver-files":"0.12.1","@eslint-react/eslint-plugin":"1.52.2","@graphql-codegen/cli":"5.0.7","@graphql-codegen/client-preset":"4.8.2","@nestjs/common":"11.1.3","@nestjs/core":"11.1.3","@next/eslint-plugin-next":"15.3.4","@testing-library/jest-dom":"6.6.3","@testing-library/react":"16.3.0","@vitejs/plugin-react-swc":"3.10.2","@vitest/browser":"3.2.4","body-parser":"2.2.0",chalk:"5.4.1",clsx:"2.1.1",compression:"1.8.0",consola:"3.4.2","cookie-parser":"1.4.7",cors:"2.8.5","crypto-js":"4.2.0","date-fns":"4.1.0",envalid:"8.0.0","eslint-config-next":"15.3.4","eslint-plugin-format":"1.0.1","eslint-plugin-react-hooks":"5.2.0","eslint-plugin-react-refresh":"0.4.20",express:"4.21.2","express-session":"1.18.1","express-useragent":"1.0.15","fs-extra":"11.3.0",globals:"16.2.0",graphql:"16.11.0","graphql-ws":"6.0.5",i18next:"25.2.1",jsdom:"26.1.0",localforage:"1.10.0","migrate-mongo":"12.1.3",mongodb:"6.17.0",mongoose:"8.16.0","mongoose-aggregate-paginate-v2":"1.1.4","mongoose-paginate-v2":"1.9.1","next-intl":"4.1.0","node-fetch":"3.3.2","node-persist":"4.0.4",playwright:"1.53.1",qs:"6.14.0",react:"19.1.0","react-dom":"19.1.0","react-hot-toast":"2.5.2","react-i18next":"15.5.3","react-icons":"5.5.0",sass:"1.89.2",slugify:"1.6.6",unorm:"1.6.0",uuid:"11.1.0",vite:"6.3.5",ws:"8.18.2",yargs:"18.0.0"},devDependencies:{"@commitlint/cli":"19.8.1","@commitlint/config-conventional":"19.8.1","@eslint/config-inspector":"1.1.0","@microsoft/api-extractor":"7.52.8","@types/body-parser":"1.19.6","@types/compression":"1.8.1","@types/cookie-parser":"1.4.9","@types/cors":"2.8.19","@types/crypto-js":"4.2.2","@types/express":"4.17.21","@types/express-session":"1.18.2","@types/express-useragent":"1.0.5","@types/fs-extra":"11.0.4","@types/migrate-mongo":"10.0.5","@types/node":"24.0.3","@types/node-persist":"3.1.8","@types/react":"19.1.8","@types/react-dom":"19.1.6","@types/unorm":"1.3.31","@types/uuid":"10.0.0","@types/ws":"8.18.1","@types/yargs":"17.0.33","esbuild-sass-plugin":"3.3.1",eslint:"9.29.0","lint-staged":"16.1.2","node-modules-inspector":"0.6.9",postcss:"8.5.6","postcss-modules":"6.0.1","simple-git-hooks":"2.13.0",tsup:"8.5.0",tsx:"4.20.3",typescript:"5.8.3",vitest:"3.2.4"},publishConfig:{access:"public",registry:"https://registry.npmjs.org/"}};var R=function(e){return e.CLI="CLI",e.STRING="STRING",e.FUNCTION="FUNCTION",e}({});var b=require("child_process"),G=N(require("process"),1),P=N(require("util"),1);var M=".cyberskill-storage";var w=N(require("@dotenvx/dotenvx"),1),j=require("envalid"),L=N(require("os"),1),U=N(require("path"),1),k=N(require("process"),1);var q=function(e){return e.PRODUCTION="production",e.STAGING="staging",e.DEVELOPMENT="development",e}({});var F=!1;function V(){k.default.env.NODE_ENV!==q.PRODUCTION&&!F&&(w.default.config(),F=!0)}C(V,"loadEnvFile");function Y(){V();var e=(0,j.cleanEnv)(k.default.env,{CWD:(0,j.str)({default:k.default.cwd()}),DEBUG:(0,j.bool)({default:!1}),CYBERSKILL_STORAGE_DIRECTORY:(0,j.str)({default:U.default.join(L.default.homedir(),M)})});return{CWD:e.CWD,DEBUG:e.DEBUG,CYBERSKILL_STORAGE_DIRECTORY:e.CYBERSKILL_STORAGE_DIRECTORY}}C(Y,"getEnv");var B=function(e){return e.Error="error",e.Warning="warning",e}({});var K=N(require("chalk"),1),H=N(require("consola"),1),Q=require("graphql");var W={GRAPHQL_PARSE_FAILED:{CODE:"GRAPHQL_PARSE_FAILED",MESSAGE:"The GraphQL operation string contains a syntax error."},GRAPHQL_VALIDATION_FAILED:{CODE:"GRAPHQL_VALIDATION_FAILED",MESSAGE:"The GraphQL operation is not valid against the server's schema."},BAD_USER_INPUT:{CODE:"BAD_USER_INPUT",MESSAGE:"The GraphQL operation includes an invalid value for a field argument."},PERSISTED_QUERY_NOT_FOUND:{CODE:"PERSISTED_QUERY_NOT_FOUND",MESSAGE:"A client sent the hash of a query string to execute via automatic persisted queries, but the query was not in the APQ cache."},PERSISTED_QUERY_NOT_SUPPORTED:{CODE:"PERSISTED_QUERY_NOT_SUPPORTED",MESSAGE:"A client sent the hash of a query string to execute via automatic persisted queries, but the server has disabled APQ."},OPERATION_RESOLUTION_FAILURE:{CODE:"OPERATION_RESOLUTION_FAILURE",MESSAGE:"The request was parsed successfully and is valid against the server's schema, but the server couldn't resolve which operation to run. This occurs when a request containing multiple named operations doesn't specify which operation to run (i.e.,operationName), or if the named operation isn't included in the request."},CONTINUE:{CODE:100,MESSAGE:"Continue"},SWITCHING_PROTOCOLS:{CODE:101,MESSAGE:"Switching Protocols"},PROCESSING:{CODE:102,MESSAGE:"Processing"},OK:{CODE:200,MESSAGE:"OK"},CREATED:{CODE:201,MESSAGE:"Created"},ACCEPTED:{CODE:202,MESSAGE:"Accepted"},NON_AUTHORITATIVE_INFORMATION:{CODE:203,MESSAGE:"Non Authoritative Information"},NO_CONTENT:{CODE:204,MESSAGE:"No Content"},RESET_CONTENT:{CODE:205,MESSAGE:"Reset Content"},PARTIAL_CONTENT:{CODE:206,MESSAGE:"Partial Content"},MULTI_STATUS:{CODE:207,MESSAGE:"Multi-Status"},MULTIPLE_CHOICES:{CODE:300,MESSAGE:"Multiple Choices"},MOVED_PERMANENTLY:{CODE:301,MESSAGE:"Moved Permanently"},MOVED_TEMPORARILY:{CODE:302,MESSAGE:"Moved Temporarily"},SEE_OTHER:{CODE:303,MESSAGE:"See Other"},NOT_MODIFIED:{CODE:304,MESSAGE:"Not Modified"},USE_PROXY:{CODE:305,MESSAGE:"Use Proxy"},TEMPORARY_REDIRECT:{CODE:307,MESSAGE:"Temporary Redirect"},PERMANENT_REDIRECT:{CODE:308,MESSAGE:"Permanent Redirect"},BAD_REQUEST:{CODE:400,MESSAGE:"Bad Request"},UNAUTHORIZED:{CODE:401,MESSAGE:"Unauthorized"},PAYMENT_REQUIRED:{CODE:402,MESSAGE:"Payment Required"},FORBIDDEN:{CODE:403,MESSAGE:"Forbidden"},NOT_FOUND:{CODE:404,MESSAGE:"Not Found"},METHOD_NOT_ALLOWED:{CODE:405,MESSAGE:"Method Not Allowed"},NOT_ACCEPTABLE:{CODE:406,MESSAGE:"Not Acceptable"},PROXY_AUTHENTICATION_REQUIRED:{CODE:407,MESSAGE:"Proxy Authentication Required"},REQUEST_TIMEOUT:{CODE:408,MESSAGE:"Request Timeout"},CONFLICT:{CODE:409,MESSAGE:"Conflict"},GONE:{CODE:410,MESSAGE:"Gone"},LENGTH_REQUIRED:{CODE:411,MESSAGE:"Length Required"},PRECONDITION_FAILED:{CODE:412,MESSAGE:"Precondition Failed"},REQUEST_TOO_LONG:{CODE:413,MESSAGE:"Request Entity Too Large"},REQUEST_URI_TOO_LONG:{CODE:414,MESSAGE:"Request-URI Too Long"},UNSUPPORTED_MEDIA_TYPE:{CODE:415,MESSAGE:"Unsupported Media Type"},REQUESTED_RANGE_NOT_SATISFIABLE:{CODE:416,MESSAGE:"Requested Range Not Satisfiable"},EXPECTATION_FAILED:{CODE:417,MESSAGE:"Expectation Failed"},IM_A_TEAPOT:{CODE:418,MESSAGE:"I'm a teapot"},INSUFFICIENT_SPACE_ON_RESOURCE:{CODE:419,MESSAGE:"Insufficient Space on Resource"},METHOD_FAILURE:{CODE:420,MESSAGE:"Method Failure"},MISDIRECTED_REQUEST:{CODE:421,MESSAGE:"Misdirected Request"},UNPROCESSABLE_ENTITY:{CODE:422,MESSAGE:"Unprocessable Entity"},LOCKED:{CODE:423,MESSAGE:"Locked"},FAILED_DEPENDENCY:{CODE:424,MESSAGE:"Failed Dependency"},PRECONDITION_REQUIRED:{CODE:428,MESSAGE:"Precondition Required"},TOO_MANY_REQUESTS:{CODE:429,MESSAGE:"Too Many Requests"},REQUEST_HEADER_FIELDS_TOO_LARGE:{CODE:431,MESSAGE:"Request Header Fields Too Large"},UNAVAILABLE_FOR_LEGAL_REASONS:{CODE:451,MESSAGE:"Unavailable For Legal Reasons"},INTERNAL_SERVER_ERROR:{CODE:500,MESSAGE:"Internal Server Error"},NOT_IMPLEMENTED:{CODE:501,MESSAGE:"Not Implemented"},BAD_GATEWAY:{CODE:502,MESSAGE:"Bad Gateway"},SERVICE_UNAVAILABLE:{CODE:503,MESSAGE:"Service Unavailable"},GATEWAY_TIMEOUT:{CODE:504,MESSAGE:"Gateway Timeout"},HTTP_VERSION_NOT_SUPPORTED:{CODE:505,MESSAGE:"HTTP Version Not Supported"},INSUFFICIENT_STORAGE:{CODE:507,MESSAGE:"Insufficient Storage"},NETWORK_AUTHENTICATION_REQUIRED:{CODE:511,MESSAGE:"Network Authentication Required"}};var J=Y();J.DEBUG||(H.default.level=4);function $(e){var t=K.default[e];return typeof t=="function"?t:K.default.green}C($,"chalkKeyword");var z={silent:H.default.silent,level:H.default.level,fatal:H.default.fatal,error:H.default.error,warn:H.default.warn,log:H.default.log,info:H.default.info,success:H.default.success,ready:H.default.ready,start:H.default.start,box:H.default.box,debug:H.default.debug,trace:H.default.trace,verbose:H.default.verbose,printBoxedLog:function e(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"red";if(!(t===null||t===void 0?void 0:t.length)){H.default.box(K.default.green(e));return}t.forEach(function(e){var t=e.file,r=e.position,i=e.rule,s=e.message;H.default.log("".concat(K.default.gray("File:")," ").concat(K.default.blue("".concat(t).concat(r?":".concat(r):"")))),i&&H.default.log(" ".concat($(n)("Rule:")," ").concat(i)),H.default.log(" ".concat($(n)("Message:")," ").concat(s))}),H.default.box($(n)("".concat(e," : ").concat(t.length))),H.default.log(K.default.gray("─".repeat(40)))}};function X(e,t){var n=t!==null&&t!==void 0?t:{},r=n.shouldLog,i=r===void 0?!0:r,s=n.returnValue,a=n.callback,c=o(e,Error)?e:new Error(typeof e=="string"?e:"Unknown error");return i&&z.error(c.message),a&&typeof a=="function"&&a(c),s||{success:!1,message:c.message,code:W.INTERNAL_SERVER_ERROR.CODE}}C(X,"catchError");var Z=function(e){return e.DEPENDENCY="dependencies",e.DEV_DEPENDENCY="devDependencies",e.PEER_DEPENDENCY="peerDependencies",e.BUNDLE_DEPENDENCY="bundleDependencies",e.OPTIONAL_DEPENDENCY="optionalDependencies",e}({});var ee=N(require("node-fetch"),1);var et=N(require("fs-extra"),1),en=N(require("path"),1);var er=et.default,ei=er.lstatSync,es=er.readdirSync,eo=er.mkdirSync,ea=er.readFileSync,ec=er.unlinkSync,eu=er.statSync,el=et.default.readJsonSync;function ed(e,t,n){et.default.writeFileSync(e,t,n!==null&&n!==void 0?n:"utf-8")}C(ed,"writeFileSync");function ep(e,t,n){et.default.appendFileSync(e,t,n!==null&&n!==void 0?n:"utf-8")}C(ep,"appendFileSync");function eE(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}return t.every(function(e){return et.default.pathExistsSync(e)})}C(eE,"pathExistsSync");function ef(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}t.forEach(function(e){eE(e)&&et.default.removeSync(e)})}C(ef,"removeSync");var em=N(require("fs-extra"),1);var eg=N(require("path"),1);var ey=Y(),eh=eg.default;function ev(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}var r;return(r=eh).resolve.apply(r,[ey.CWD].concat(E(t)))}C(ev,"resolveWorkingPath");function eS(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++){t[n]=arguments[n]}var r;return(r=eh).join.apply(r,E(t))}C(eS,"join");var eD=Y(),eO=eD.CWD,eC="@cyberskill/shared",eI="node_modules",eN="dist",eT="public",ex="package.json",eA="package-lock.json",e_="tsconfig.json",eR=".gitignore",eb=".simple-git-hooks.json",eG="pnpm-lock.yaml",eP=".git/hooks/",eM=".git/COMMIT_EDITMSG",ew=".migrate-mongo.config.js",ej=function(){var e=em.default.readJsonSync(ev(ex)).name===eC?eO:eS(eO,eI,eC);return eS(e,eN)}(),eL="cyberskill",eU="src/node/cli/index.ts",ek="eslint",eq="eslint",eF="vitest";var eV="vitest",eY="@commitlint/cli",eB="@commitlint/config-conventional",eK="commitlint",eH="lint-staged",eQ="lint-staged",eW="typescript",eJ="tsc",e$="tsx",ez="git",eX="pnpm",eZ="pnpm exec",e0="simple-git-hooks",e1="simple-git-hooks",e2="@eslint/config-inspector",e4="eslint-config-inspector",e3="node-modules-inspector",e5="node-modules-inspector",e8="migrate-mongo",e6="./node_modules/migrate-mongo/bin/migrate-mongo",e7={CYBERSKILL_DIRECTORY:ej,WORKING_DIRECTORY:eO,PUBLIC_DIRECTORY:ev(eT),TS_CONFIG:ev(e_),GIT_IGNORE:ev(eR),GIT_HOOK:ev(eP),GIT_COMMIT_MSG:ev(eM),SIMPLE_GIT_HOOKS_JSON:ev(eb),PACKAGE_JSON:ev(ex),PACKAGE_LOCK_JSON:ev(eA),PNPM_LOCK_YAML:ev(eG),NODE_MODULES:ev(eI),MIGRATE_MONGO_CONFIG:ev(ew),LINT_STAGED_CONFIG:ev("".concat(ej,"/config/lint-staged/index.js")),COMMITLINT_CONFIG:ev("".concat(ej,"/config/commitlint/index.js")),VITEST_UNIT_CONFIG:ev("".concat(ej,"/config/vitest/vitest.unit.js")),VITEST_UNIT_SETUP_CONFIG:ev("".concat(ej,"/config/vitest/vitest.unit.setup.ts")),VITEST_E2E_CONFIG:ev("".concat(ej,"/config/vitest/vitest.e2e.js"))};function e9(e){var t=e.isCurrentProject;return d({"pre-commit":eQ,"commit-msg":eK},t&&{"pre-push":tD("".concat(ez," pull"))})}C(e9,"createGitHooksConfig");function te(e){var t=e.type,n=e.packages,r=e.command;var s=n===null||n===void 0?void 0:n.reduce(function(e,t){return e.some(function(e){return e.name===t.name})||e.push(t),e},[]);return function(){return i(function(){var e;return g(this,function(n){switch(n.label){case 0:switch(t){case R.CLI:return[3,1];case R.STRING:return[3,4]}return[3,5];case 1:e=s===null||s===void 0?void 0:s.length;if(!e)return[3,3];return[4,ta(s,{install:!0})];case 2:e=n.sent();n.label=3;case 3:return[2,(e,tC(tD("".concat(eZ," ").concat(r))))];case 4:return[2,tC(tD(r))];case 5:throw new Error("Unsupported command type");case 6:return[2]}})})()}}C(te,"buildCommand");var tt={simpleGitHooks:te({type:R.CLI,packages:[{name:e0,type:Z.DEV_DEPENDENCY}],command:e1}),eslintInspect:te({type:R.CLI,packages:[{name:e2,type:Z.DEV_DEPENDENCY}],command:e4}),nodeModulesInspect:te({type:R.CLI,packages:[{name:e3,type:Z.DEV_DEPENDENCY}],command:e5}),eslintCheck:te({type:R.CLI,packages:[{name:ek,type:Z.DEV_DEPENDENCY}],command:"".concat(eq," ").concat(e7.WORKING_DIRECTORY," --no-cache")}),eslintFix:te({type:R.CLI,packages:[{name:ek,type:Z.DEV_DEPENDENCY}],command:"".concat(eq," ").concat(e7.WORKING_DIRECTORY," --fix --no-cache")}),typescriptCheck:te({type:R.CLI,packages:[{name:eW,type:Z.DEV_DEPENDENCY}],command:"".concat(eJ," -p ").concat(e7.TS_CONFIG," --noEmit")}),testUnit:te({type:R.CLI,packages:[{name:eF,type:Z.DEV_DEPENDENCY}],command:"".concat(eV," --config ").concat(e7.VITEST_UNIT_CONFIG)}),testE2e:te({type:R.CLI,packages:[{name:eF,type:Z.DEV_DEPENDENCY}],command:"".concat(eV," --config ").concat(e7.VITEST_E2E_CONFIG)}),mongoMigrateCreate:C(function(e){return te({type:R.CLI,packages:[{name:e$,type:Z.DEPENDENCY},{name:e8,type:Z.DEPENDENCY}],command:"".concat(e$," ").concat(e6," create ").concat(e," -f ").concat(e7.MIGRATE_MONGO_CONFIG)})()},"mongoMigrateCreate"),mongoMigrateUp:te({type:R.CLI,packages:[{name:e$,type:Z.DEPENDENCY},{name:e8,type:Z.DEPENDENCY}],command:"".concat(e$," ").concat(e6," up -f ").concat(e7.MIGRATE_MONGO_CONFIG)}),mongoMigrateDown:te({type:R.CLI,packages:[{name:e$,type:Z.DEPENDENCY},{name:e8,type:Z.DEPENDENCY}],command:"".concat(e$," ").concat(e6," down -f ").concat(e7.MIGRATE_MONGO_CONFIG)}),commitLint:te({type:R.CLI,packages:[{name:eY,type:Z.DEV_DEPENDENCY},{name:eB,type:Z.DEV_DEPENDENCY}],command:"".concat(eK," --edit ").concat(e7.GIT_COMMIT_MSG," --config ").concat(e7.COMMITLINT_CONFIG)}),lintStaged:te({type:R.CLI,packages:[{name:eH,type:Z.DEV_DEPENDENCY}],command:"".concat(eQ," --config ").concat(e7.LINT_STAGED_CONFIG)}),configureGitHook:te({type:R.STRING,command:"".concat(ez," config core.hooksPath ").concat(e7.GIT_HOOK)}),build:te({type:R.STRING,command:"".concat(eX," run --if-present build")}),pnpmInstallStandard:te({type:R.STRING,command:"".concat(eX," install --ignore-scripts")}),pnpmInstallLegacy:te({type:R.STRING,command:"".concat(eX," install --ignore-scripts --legacy-peer-deps")}),pnpmInstallForce:te({type:R.STRING,command:"".concat(eX," install --ignore-scripts --force")}),pnpmPruneStore:te({type:R.STRING,command:"".concat(eX," store prune")}),pnpmCleanCache:te({type:R.STRING,command:"".concat(eX," cache delete")})};var tn=Y();function tr(e){return i(function(){var t,n,r,i;return g(this,function(s){switch(s.label){case 0:s.trys.push([0,3,,4]);return[4,(0,ee.default)("https://registry.npmjs.org/".concat(e,"/latest"))];case 1:t=s.sent();if(!t.ok)throw new Error("Failed to fetch latest version: ".concat(t.status," ").concat(t.statusText));return[4,t.json()];case 2:n=s.sent(),r=n.version;return[2,{success:!0,result:r}];case 3:i=s.sent();return[2,X(i)];case 4:return[2]}})})()}C(tr,"getLatestPackageVersion");function ti(e){return i(function(){var t,n,r,i,s,o,a,c,u,l,d,p,E,f,m,y,h,v,S,D,O,C,I,N;return g(this,function(g){switch(g.label){case 0:g.trys.push([0,2,,3]);if(!e){if(eE(e7.PACKAGE_JSON)){t=el(e7.PACKAGE_JSON),n=t.name,r=n===void 0?"":n,i=t.version,s=i===void 0?"":i;return[2,{success:!0,result:{name:r,currentVersion:s,latestVersion:s,isCurrentProject:!0,isInstalled:!0,isUpToDate:!0,isDependency:!1,isDevDependency:!1,installedPath:e7.PACKAGE_JSON,file:t}}]}return[2,{success:!0,result:{name:"",currentVersion:"",latestVersion:"",isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:!1,isDevDependency:!1,installedPath:"",file:{}}}]}if(!eE(e7.PACKAGE_JSON))return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:"",isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:e.type===Z.DEPENDENCY,isDevDependency:e.type===Z.DEV_DEPENDENCY,installedPath:"",file:{}}}];o=el(e7.PACKAGE_JSON),a=o.name,c=o.version,u=c===void 0?"":c,l=o.dependencies,d=l===void 0?{}:l,p=o.devDependencies,E=p===void 0?{}:p;if(e.name===a)return[2,{success:!0,result:{name:a,currentVersion:u,latestVersion:u,isCurrentProject:!0,isInstalled:!0,isUpToDate:!0,isDependency:e.type===Z.DEPENDENCY,isDevDependency:e.type===Z.DEV_DEPENDENCY,installedPath:e7.PACKAGE_JSON,file:o}}];f=e.name in d,m=e.name in E;return[4,tr(e.name)];case 1:y=g.sent();if(!y.success)return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:"",isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:f,isDevDependency:m,installedPath:"",file:{}}}];if(!f&&!m)return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:y.result,isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:e.type===Z.DEPENDENCY,isDevDependency:e.type===Z.DEV_DEPENDENCY,installedPath:"",file:{}}}];S=(v=(h=d[e.name])!==null&&h!==void 0?h:E[e.name])!==null&&v!==void 0?v:"",D=eS(tn.CWD,eI,e.name,ex);if(!eE(D))return[2,{success:!0,result:{name:e.name,currentVersion:"",latestVersion:y.result,isCurrentProject:!1,isInstalled:!1,isUpToDate:!1,isDependency:f,isDevDependency:m,installedPath:"",file:{}}}];O=el(D),C=O.version,I=C===void 0?"":C;return[2,S!==I?{success:!0,result:{name:e.name,currentVersion:I||S,latestVersion:y.result,isCurrentProject:!1,isInstalled:!0,isUpToDate:!1,isDependency:f,isDevDependency:m,installedPath:D,file:O}}:{success:!0,result:{name:e.name,currentVersion:S,latestVersion:y.result,isCurrentProject:!1,isInstalled:!0,isUpToDate:S===y.result,isDependency:f,isDevDependency:m,installedPath:D,file:O}}];case 2:N=g.sent();return[2,X(N)];case 3:return[2]}})})()}C(ti,"getPackage");function ts(e){return i(function(){var t,n,r,i,s;return g(this,function(o){try{;r=el(e7.PACKAGE_JSON),i=(t=r.dependencies)!==null&&t!==void 0?t:{},s=(n=r.devDependencies)!==null&&n!==void 0?n:{};e.isDependency?i[e.name]=e.latestVersion:e.isDevDependency&&(s[e.name]=e.latestVersion),ed(e7.PACKAGE_JSON,JSON.stringify(r,null,4)),z.info('Updated "'.concat(e.name,'" to version ').concat(e.latestVersion))}catch(e){X(e)}return[2]})})()}C(ts,"updatePackage");function to(){return i(function(){var e,t,n,r,i,s,o,a,c,u,l,d,p;return g(this,function(E){switch(E.label){case 0:E.trys.push([0,12,,13]);e=[{command:C(function(){return tt.pnpmInstallStandard()},"command"),message:"Installing dependencies (standard)"},{command:C(function(){return tt.pnpmInstallLegacy()},"command"),message:"Retrying with legacy peer dependencies"},{command:C(function(){return tt.pnpmInstallForce()},"command"),message:"Retrying with force install"}];t=true,n=false,r=undefined;E.label=1;case 1:E.trys.push([1,9,10,11]);i=e[Symbol.iterator]();E.label=2;case 2:if(!!(t=(s=i.next()).done))return[3,8];o=s.value,a=o.command,c=o.message;E.label=3;case 3:E.trys.push([3,6,,7]);return[4,a()];case 4:u=E.sent();return[4,tN("".concat(c," using: ").concat(u),u)];case 5:E.sent();return[2];case 6:l=E.sent();X(l);return[3,7];case 7:t=true;return[3,2];case 8:return[3,11];case 9:d=E.sent();n=true;r=d;return[3,11];case 10:try{if(!t&&i.return!=null){i.return()}}finally{if(n){throw r}}return[7];case 11:return[3,13];case 12:p=E.sent();X(p);return[3,13];case 13:return[2]}})})()}C(to,"installDependencies");function ta(e,t){return i(function(){var n,r,i,s,o,a,c,u,l,d,p,f,m,y,h,v,S;return g(this,function(g){switch(g.label){case 0:g.trys.push([0,15,,16]);if(!eE(e7.PACKAGE_JSON)){z.error("package.json not found. Aborting setup.");return[2]}return[4,Promise.all(e.map(ti))];case 1:i=g.sent().filter(function(e){return e.success&&!!e.result&&!e.result.isCurrentProject}).map(function(e){return e.result}),s=i.filter(function(e){return!e.isInstalled}),o=i.filter(function(e){return!e.isUpToDate}),a=[];(t===null||t===void 0?void 0:t.install)&&s.length>0&&(n=a).push.apply(n,E(s.map(ts))),(t===null||t===void 0?void 0:t.update)&&o.length>0&&(r=a).push.apply(r,E(o.map(ts)));c=a.length>0;if(!c)return[3,6];return[4,Promise.all(a)];case 2:g.sent();return[4,to()];case 3:g.sent();u=["Running ESLint with auto-fix"];return[4,tt.eslintFix()];case 4:return[4,tN.apply(void 0,u.concat([g.sent()]))];case 5:c=g.sent();g.label=6;case 6:c;d=true,p=false,f=undefined;g.label=7;case 7:g.trys.push([7,12,13,14]);m=((l=t===null||t===void 0?void 0:t.callbacks)!==null&&l!==void 0?l:[])[Symbol.iterator]();g.label=8;case 8:if(!!(d=(y=m.next()).done))return[3,11];h=y.value;return[4,h()];case 9:g.sent();g.label=10;case 10:d=true;return[3,8];case 11:return[3,14];case 12:v=g.sent();p=true;f=v;return[3,14];case 13:try{if(!d&&m.return!=null){m.return()}}finally{if(p){throw f}}return[7];case 14:return[3,16];case 15:S=g.sent();X(S);return[3,16];case 16:return[2]}})})()}C(ta,"setupPackages");var tc=N(require("node-persist"),1);var tu=Y();function tl(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=tc.default.defaultInstance;if(e)return[3,2];return[4,tc.default.init({dir:tu.CYBERSKILL_STORAGE_DIRECTORY})];case 1:e=t.sent();t.label=2;case 2:e;return[2]}})})()}C(tl,"initNodePersist");var td={get:function e(e){return i(function(){var t,n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,3,,4]);return[4,tl()];case 1:r.sent();return[4,tc.default.getItem(e)];case 2:return[2,(t=r.sent())!==null&&t!==void 0?t:null];case 3:n=r.sent();return[2,X(n,{returnValue:null})];case 4:return[2]}})})()},set:function e(e,t){return i(function(){var n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,3,,4]);return[4,tl()];case 1:r.sent();return[4,tc.default.setItem(e,t)];case 2:r.sent();return[3,4];case 3:n=r.sent();X(n);return[3,4];case 4:return[2]}})})()},remove:function e(e){return i(function(){var t;return g(this,function(n){switch(n.label){case 0:n.trys.push([0,3,,4]);return[4,tl()];case 1:n.sent();return[4,tc.default.removeItem(e)];case 2:n.sent();return[3,4];case 3:t=n.sent();X(t);return[3,4];case 4:return[2]}})})()},keys:function e(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:n.trys.push([0,3,,4]);return[4,tl()];case 1:n.sent();return[4,tc.default.keys()];case 2:e=n.sent();return[2,Array.isArray(e)?e:(z.warn("[Storage:keys] Invalid keys response:",e),[])];case 3:t=n.sent();return[2,X(t,{returnValue:[]})];case 4:return[2]}})})()},getLogLink:function e(e){return i(function(){return g(this,function(t){try{return[2,"".concat(tu.CYBERSKILL_STORAGE_DIRECTORY," (key: ").concat(e,")")]}catch(e){return[2,X(e,{returnValue:null})]}return[2]})})()}};var tp=Y(),tE=P.promisify(b.exec);function tf(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:return[4,ti()];case 1:e=t.sent();return[2,e.success?e.result.name:Date.now().toString()]}})})()}C(tf,"getPackageName");function tm(e){return i(function(){var t,n;return g(this,function(r){switch(r.label){case 0:if(e.length===0)return[2];return[4,tf()];case 1:t=r.sent();r.label=2;case 2:r.trys.push([2,4,,5]);return[4,td.set(t,e)];case 3:r.sent(),setTimeout(function(){return i(function(){var e;return g(this,function(n){switch(n.label){case 0:return[4,td.getLogLink(t)];case 1:e=n.sent();e&&z.info("\uD83D\uDCC2 Open the error list manually: ".concat(e));return[2]}})})()},0);return[3,5];case 4:n=r.sent();X(n);return[3,5];case 5:return[2]}})})()}C(tm,"saveErrorListToStorage");function tg(){return i(function(){var e,t,n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,3,,4]);return[4,tf()];case 1:e=r.sent();return[4,td.get(e)];case 2:return[2,(t=r.sent())!==null&&t!==void 0?t:[]];case 3:n=r.sent();return[2,X(n,{returnValue:[]})];case 4:return[2]}})})()}C(tg,"getStoredErrorLists");function ty(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:n.trys.push([0,3,,4]);return[4,tf()];case 1:e=n.sent();return[4,td.remove(e)];case 2:n.sent();return[3,4];case 3:t=n.sent();X(t);return[3,4];case 4:return[2]}})})()}C(ty,"clearAllErrorLists");function th(e){var t=[],n=[],r="",i=/^\s*(\d+):(\d+)\s+(error|warning)\s+(.+?)\s+(\S+)$/,s=/^(.+?)\((\d+),(\d+)\):\s+(error|warning)\s+TS\d+:\s+(\S.+)$/,o=/^✖\s+(.*?)\s+\[(.*?)\]$/;e.split("\n").forEach(function(e){if(e.startsWith("/"))r=e.trim();else{var a,c,u,l,d;var p=i.exec(e)||[],E=s.exec(e)||[],f=o.exec(e)||[];var m,g,y,h,v,S;p.length&&r?t.push({file:r,position:"".concat(p[1],":").concat(p[2]),type:p[3]===B.Error?B.Error:B.Warning,message:(m=p===null||p===void 0?void 0:(a=p[4])===null||a===void 0?void 0:a.trim())!==null&&m!==void 0?m:"",rule:(g=p===null||p===void 0?void 0:(c=p[5])===null||c===void 0?void 0:c.trim())!==null&&g!==void 0?g:""}):E.length?t.push({file:(y=E===null||E===void 0?void 0:E[1])!==null&&y!==void 0?y:"",position:"".concat(E[2],":").concat(E[3]),type:E[4]===B.Error?B.Error:B.Warning,message:(h=E===null||E===void 0?void 0:(u=E[5])===null||u===void 0?void 0:u.trim())!==null&&h!==void 0?h:""}):f.length?t.push({file:"commitlint",type:B.Error,message:(v=f===null||f===void 0?void 0:(l=f[1])===null||l===void 0?void 0:l.trim())!==null&&v!==void 0?v:"",rule:(S=f===null||f===void 0?void 0:(d=f[2])===null||d===void 0?void 0:d.trim())!==null&&S!==void 0?S:""}):n.push(e.trim())}}),t.length&&tm(t),tp.DEBUG&&n.length&&(z.warn("Unmatched lines:"),n.forEach(function(e){return z.info(" ".concat(e))}))}C(th,"parseTextErrors");function tv(e){try{var t=JSON.parse(e),n=[];t.forEach(function(e){var t=e.filePath,r=e.messages;r.forEach(function(e){var r=e.severity,i=e.line,s=e.column,o=e.ruleId,a=e.message;n.push({type:r===2?B.Error:B.Warning,file:t,position:"".concat(i,":").concat(s),rule:o,message:a})})}),n.length&&tm(n)}catch(t){th(e)}}C(tv,"parseCommandOutput");function tS(e){return i(function(e){var t,n,r,i,s,o,a,c,u;var l=arguments;return g(this,function(d){switch(d.label){case 0:t=l.length>1&&l[1]!==void 0?l[1]:tv;n=new AbortController;G.default.on("SIGINT",function(){z.warn("Process interrupted. Terminating..."),n.abort(),G.default.exit()});d.label=1;case 1:d.trys.push([1,4,,5]);if(!(typeof e=="string"))return[3,3];return[4,tE(e,{maxBuffer:0x6400000,signal:n.signal})];case 2:r=d.sent(),i=r.stdout,s=r.stderr;[i,s].forEach(function(e){return e&&t(e)});d.label=3;case 3:return[3,5];case 4:o=d.sent();a=o.stdout,c=o.stderr,u=o.message;[a,c].forEach(function(e){return e&&t(e)}),!c&&!a&&z.error("Command failed: ".concat(u));return[3,5];case 5:return[2]}})}).apply(this,arguments)}C(tS,"executeCommand");function tD(e){return{raw:!0,cmd:e}}C(tD,"rawCommand");function tO(e,t){return(t===null||t===void 0?void 0:t.isCurrentProject)?"".concat(eZ," ").concat(e$," ").concat(eU," ").concat(e):"".concat(eZ," ").concat(eL," ").concat(e)}C(tO,"formatCLI");function tC(e,t){return typeof e=="function"?tO(e(t),t):(typeof e==="undefined"?"undefined":f(e))=="object"&&(e===null||e===void 0?void 0:e.raw)===!0?e.cmd:typeof e=="string"?tO(e,t):e}C(tC,"formatCommand");function tI(e){return i(function(){var t,n,r;return g(this,function(i){switch(i.label){case 0:return[4,ti({name:eC})];case 1:t=i.sent();if(t.success){n={isCurrentProject:t.result.isCurrentProject},r=typeof e=="function"?e(n):e;return[2,Object.fromEntries(Object.entries(r).map(function(e){var t=p(e,2),r=t[0],i=t[1];return[r,tC(i,n)]}))]}return[2]}})})()}C(tI,"resolveCommands");function tN(e,t){return i(function(){var n;return g(this,function(r){switch(r.label){case 0:r.trys.push([0,2,,3]);z.start("".concat(e)),tp.DEBUG&&z.info("→ ".concat(t));return[4,tS(t)];case 1:r.sent(),z.success("".concat(e," done."));return[3,3];case 2:n=r.sent();X(n);return[3,3];case 3:return[2]}})})()}C(tN,"runCommand");function tT(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:if(!eE(e7.TS_CONFIG))return[3,3];t=["Performing TypeScript validation"];return[4,tt.typescriptCheck()];case 1:return[4,tN.apply(void 0,t.concat([n.sent()]))];case 2:e=n.sent();return[3,4];case 3:e=z.warn("No TypeScript configuration found. Skipping type check.");n.label=4;case 4:e;return[2]}})})()}C(tT,"checkTypescript");function tx(){return i(function(){var e,t,n,r;var i=arguments;return g(this,function(s){switch(s.label){case 0:e=i.length>0&&i[0]!==void 0?i[0]:!1;if(!e)return[3,3];n=["Running ESLint with auto-fix"];return[4,tt.eslintFix()];case 1:return[4,tN.apply(void 0,n.concat([s.sent()]))];case 2:t=s.sent();return[3,6];case 3:r=["Running ESLint check"];return[4,tt.eslintCheck()];case 4:return[4,tN.apply(void 0,r.concat([s.sent()]))];case 5:t=s.sent();s.label=6;case 6:t;return[2]}})}).apply(this,arguments)}C(tx,"checkEslint");function tA(e,t){if(!t.length)return;var n=e==="Errors"?"red":"yellow";z.printBoxedLog(e==="Errors"?"✖ Errors":"⚠ Warnings",t,n)}C(tA,"printIssues");function t_(){return i(function(){return g(this,function(e){setTimeout(function(){return i(function(){var e,t,n;return g(this,function(r){switch(r.label){case 0:return[4,tg()];case 1:e=r.sent(),t=e.filter(function(e){return e.type===B.Error}),n=e.filter(function(e){return e.type===B.Warning});!t.length&&!n.length?z.printBoxedLog("✔ NO ISSUES FOUND",[],"green"):(tA("Warnings",n),tA("Errors",t),(t.length>0||n.length>0)&&T.default.exit(1));return[2]}})})()},0);return[2]})})()}C(t_,"showCheckResult");function tR(){return i(function(){var e,t,n,r;return g(this,function(i){switch(i.label){case 0:return[4,ty()];case 1:i.sent();return[4,ti({name:eC})];case 2:e=i.sent();if(!e.success){z.error("Failed to retrieve package information. Aborting lint-staged.");return[2]}t=e.result.isCurrentProject;if(!t)return[3,5];n=["Building package: ".concat(eC)];return[4,tt.build()];case 3:return[4,tN.apply(void 0,n.concat([i.sent()]))];case 4:t=i.sent();i.label=5;case 5:t;r=["Executing lint-staged"];return[4,tt.lintStaged()];case 6:return[4,tN.apply(void 0,r.concat([i.sent()]))];case 7:i.sent(),t_();return[2]}})})()}C(tR,"lintStaged");function tb(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Inspecting ESLint configuration"];return[4,tt.eslintInspect()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tb,"inspectLint");function tG(){return i(function(){return g(this,function(e){switch(e.label){case 0:return[4,ty()];case 1:e.sent();return[4,Promise.all([tT(),tx()])];case 2:e.sent(),t_();return[2]}})})()}C(tG,"lintCheck");function tP(){return i(function(){return g(this,function(e){switch(e.label){case 0:return[4,ty()];case 1:e.sent();return[4,Promise.all([tT(),tx(!0)])];case 2:e.sent(),t_();return[2]}})})()}C(tP,"lintFix");function tM(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:return[4,ty()];case 1:t.sent();e=["Validating commit message"];return[4,tt.commitLint()];case 2:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 3:t.sent(),t_();return[2]}})})()}C(tM,"commitLint");function tw(){return i(function(){var e,t,n,r;return g(this,function(i){switch(i.label){case 0:e=["Configuring Git hooks"];return[4,tt.configureGitHook()];case 1:return[4,tN.apply(void 0,e.concat([i.sent()]))];case 2:i.sent(),ef(e7.GIT_HOOK);return[4,tI(e9)];case 3:t=i.sent();ed(e7.SIMPLE_GIT_HOOKS_JSON,JSON.stringify(t,null,4));n="\n".concat(eb,"\n");eE(e7.GIT_IGNORE)?ea(e7.GIT_IGNORE,"utf-8").split("\n").includes(eb)||ep(e7.GIT_IGNORE,n):ed(e7.GIT_IGNORE,n);r=["Setting up simple-git-hooks"];return[4,tt.simpleGitHooks()];case 4:return[4,tN.apply(void 0,r.concat([i.sent()]))];case 5:i.sent();return[2]}})})()}C(tw,"setupGitHook");function tj(){return i(function(){return g(this,function(e){switch(e.label){case 0:return[4,to()];case 1:e.sent();return[4,tw()];case 2:e.sent();return[2]}})})()}C(tj,"ready");function tL(){return i(function(){var e,t;return g(this,function(n){switch(n.label){case 0:ef(e7.NODE_MODULES,e7.PNPM_LOCK_YAML);e=["Pruning pnpm store"];return[4,tt.pnpmPruneStore()];case 1:return[4,tN.apply(void 0,e.concat([n.sent()]))];case 2:n.sent();t=["Clearing pnpm cache"];return[4,tt.pnpmCleanCache()];case 3:return[4,tN.apply(void 0,t.concat([n.sent()]))];case 4:n.sent();return[4,to()];case 5:n.sent();return[4,tw()];case 6:n.sent();return[2]}})})()}C(tL,"reset");function tU(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Inspecting project dependencies"];return[4,tt.nodeModulesInspect()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tU,"inspect");function tk(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Running unit tests"];return[4,tt.testUnit()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tk,"testUnit");function tq(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Running end-to-end tests"];return[4,tt.testE2e()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tq,"testE2E");function tF(e){return i(function(){var t;return g(this,function(n){switch(n.label){case 0:t=["Creating MongoDB migration"];return[4,tt.mongoMigrateCreate(e)];case 1:return[4,tN.apply(void 0,t.concat([n.sent()]))];case 2:n.sent();return[2]}})})()}C(tF,"mongoMigrateCreate");function tV(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Running MongoDB migrations"];return[4,tt.mongoMigrateUp()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tV,"mongoMigrateUp");function tY(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:e=["Rolling back MongoDB migration"];return[4,tt.mongoMigrateDown()];case 1:return[4,tN.apply(void 0,e.concat([t.sent()]))];case 2:t.sent();return[2]}})})()}C(tY,"mongoMigrateDown");(function(){return i(function(){var e;return g(this,function(t){switch(t.label){case 0:t.trys.push([0,2,,3]);return[4,(0,A.default)((0,x.hideBin)(T.default.argv)).scriptName(eL).usage("$0 <command> [options]").command("lint","Check code for linting issues",tG).command("lint:fix","Fix linting issues automatically",tP).command("lint:inspect","View active ESLint configuration",tb).command("lint-staged","Run lint checks on staged files",tR).command("commitlint","Validate commit message format",tM).command("ready","Initialize project and dependencies",tj).command("reset","Reset the project and reinstall dependencies",tL).command("inspect","Analyze installed project dependencies",tU).command("test:unit","Run unit test suite",tk).command("test:e2e","Run end-to-end test suite",tq).command("mongo:migrate:create <name>","Create a MongoDB migration",function(e){return e.positional("name",{describe:"Migration name",type:"string"})},function(e){return i(function(){return g(this,function(t){switch(t.label){case 0:if(!e.name){z.error("Migration name is required.");return[2]}return[4,tF(e.name)];case 1:t.sent();return[2]}})})()}).command("mongo:migrate:up","Apply all MongoDB migrations",tV).command("mongo:migrate:down","Rollback last MongoDB migration",tY).demandCommand(1,"Please specify a valid command.").strict().help().alias("h","help").alias("v","version").version(_.version).epilog('\uD83D\uDCA1 Tip: Use "--help" with any command to see options\n').parse()];case 1:t.sent();return[3,3];case 2:e=t.sent();X(e),T.default.exit(1);return[3,3];case 3:return[2]}})})()})();
|