@reliverse/dler 1.7.57 → 1.7.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -61,13 +61,13 @@ dler excels at managing both build and publish workflows, making it ideal for:
61
61
 
62
62
  ## getting started
63
63
 
64
- ensure git, node.js, and bun/pnpm/yarn/npm (**[bun](https://bun.sh/get) is highly recommended**) are installed. then:
64
+ make sure you have git, node.js, and bun/pnpm/yarn/npm (**[bun](https://bun.sh/get) is highly recommended**) are installed. then:
65
65
 
66
- ### playground
66
+ ### 0. try the playground
67
67
 
68
68
  > **💡 tip**:
69
69
  > want to test dler before integrating it into your project?
70
- > clone the repo and build it using dler itself!
70
+ > clone the dler repo and build it using dler itself!
71
71
 
72
72
  ```sh
73
73
  git clone https://github.com/reliverse/dler.git
@@ -76,75 +76,75 @@ bun i
76
76
  bun dev # bun src/cli.ts --dev
77
77
  ```
78
78
 
79
- ### installation
79
+ ### 1. install dler
80
80
 
81
- 1. **install**:
81
+ **install as dev dep (recommended)**:
82
82
 
83
- **install as dev dep (recommended)**:
83
+ ```sh
84
+ bun add -D @reliverse/dler
85
+ # or update as needed:
86
+ bun update --latest
87
+ ```
84
88
 
85
- ```sh
86
- bun add -D @reliverse/dler
87
- # or update as needed:
88
- bun update --latest
89
- ```
89
+ **and/or install globally**:
90
90
 
91
- **and/or install globally**:
91
+ ```sh
92
+ bun add -g @reliverse/dler
93
+ # or update as needed:
94
+ bun i -g update --latest
95
+ ```
92
96
 
93
- ```sh
94
- bun add -g @reliverse/dler
95
- # or update as needed:
96
- bun i -g update --latest
97
- ```
97
+ - **when installed globally**: use `dler` anywhere.
98
+ - **when installed as dev dep**: use with package manager name prefix, e.g. `bun dler`, inside your project directory.
98
99
 
99
- - **when installed globally**: use `dler` anywhere.
100
- - **when installed as dev dep**: use with package manager name prefix, e.g. `bun dler`, inside your project directory.
100
+ ### 2. prepare your project
101
101
 
102
- 2. **prepare your project**:
102
+ a. **configure `.gitignore`**:
103
103
 
104
- a. **configure `.gitignore`**:
104
+ ```sh
105
+ echo "dist*" >> .gitignore
106
+ echo "logs" >> .gitignore
107
+ ```
105
108
 
106
- ```sh
107
- echo "dist*" >> .gitignore
108
- echo "logs" >> .gitignore
109
- ```
109
+ b. **add `".config/**/*.ts"` to `include` in `tsconfig.json`**:
110
110
 
111
- b. **add `".config/**/*.ts"` to `include` in `tsconfig.json`**:
111
+ ```json
112
+ "include": [".config/**/*.ts", ...]
113
+ ```
112
114
 
113
- ```json
114
- "include": [".config/**/*.ts", ...]
115
- ```
115
+ c. **package.json**:
116
116
 
117
- c. **package.json**:
117
+ ```json
118
+ "scripts": {
119
+ "build": "dler build", // this is optional
120
+ "pub": "dler pub" // this does build+publish
121
+ }
122
+ ```
118
123
 
119
- ```json
120
- "scripts": {
121
- "build": "dler build", // this is optional
122
- "pub": "dler pub" // this does build+publish
123
- }
124
- ```
124
+ d. **initialize config**:
125
125
 
126
- d. **initialize config**:
126
+ ```sh
127
+ bun dler # if installed as dev dep
128
+ dler # if installed globally
129
+ ```
127
130
 
128
- ```sh
129
- bun [build|pub] # if installed as dev dep
130
- dler [build|pub] # if installed globally
131
- ```
131
+ - the `.config/dler.ts` file is automatically created on first run.
132
132
 
133
- - the `.config/dler.ts` file is automatically created on first run.
133
+ e. **optionally, customize `.config/dler.ts`**:
134
134
 
135
- e. **optionally, customize `.config/dler.ts`**:
135
+ - it's recommended to customize this file according to your needs.
136
+ - you can check an example config here: [.config/dler.ts](https://github.com/reliverse/dler/blob/main/.config/dler.ts)
137
+ - if you want to build files which have extensions other than `.ts` and `.js`, you can customize `buildPreExtensions` array (example: `["ts", "js", "vue", "tsx", "jsx"]`).
138
+ - if you want to exclude some files from being built, you can customize `buildTemplatesDir` string (example: `"templates"`). by placing them in this directory, they will not be built, whole directory will be copied from e.g. `src/foo/templates` to `dist-*/bin/foo/templates` as-is.
136
139
 
137
- - it's recommended to customize this file according to your needs.
138
- - you can check an example config here: [.config/dler.ts](https://github.com/reliverse/dler/blob/main/.config/dler.ts)
139
- - if you want to build files which have extensions other than `.ts` and `.js`, you can customize `buildPreExtensions` array (example: `["ts", "js", "vue", "tsx", "jsx"]`).
140
- - if you want to exclude some files from being built, you can customize `buildTemplatesDir` string (example: `"templates"`). by placing them in this directory, they will not be built, whole directory will be copied from e.g. `src/foo/templates` to `dist-*/bin/foo/templates` as-is.
140
+ ### 3. run and enjoy
141
141
 
142
- 3. **run and enjoy**:
142
+ ```sh
143
+ bun dler [build|pub|--help] # if installed as dev dep
144
+ dler [build|pub|--help] # if installed globally
145
+ ```
143
146
 
144
- ```sh
145
- bun dler [build|pub|--help] # if installed as dev dep
146
- dler [build|pub|--help] # if installed globally
147
- ```
147
+ (_run just `dler` to see an interactive list of commands_)
148
148
 
149
149
  ## dler commands
150
150
 
package/bin/app/cmds.d.ts CHANGED
@@ -14,3 +14,4 @@ export declare const getRemptsCmd: () => Promise<Command>;
14
14
  export declare const getRenameCmd: () => Promise<Command>;
15
15
  export declare const getMagicCmd: () => Promise<Command>;
16
16
  export declare const getSplitCmd: () => Promise<Command>;
17
+ export declare const getRmCmd: () => Promise<Command>;
package/bin/app/cmds.js CHANGED
@@ -14,3 +14,4 @@ export const getRemptsCmd = async () => loadCommand("rempts");
14
14
  export const getRenameCmd = async () => loadCommand("rename");
15
15
  export const getMagicCmd = async () => loadCommand("magic");
16
16
  export const getSplitCmd = async () => loadCommand("split");
17
+ export const getRmCmd = async () => loadCommand("rm");
@@ -27,5 +27,10 @@ declare const _default: import("@reliverse/rempts").Command<{
27
27
  description: string;
28
28
  default: number;
29
29
  };
30
+ gitignore: {
31
+ type: "boolean";
32
+ description: string;
33
+ default: false;
34
+ };
30
35
  }>;
31
36
  export default _default;
@@ -1,7 +1,7 @@
1
1
  import { join, dirname, basename } from "@reliverse/pathkit";
2
2
  import { relinka } from "@reliverse/relinka";
3
3
  import { defineCommand, selectPrompt, inputPrompt } from "@reliverse/rempts";
4
- import { copyFile, access, mkdir } from "node:fs/promises";
4
+ import { copyFile, access, mkdir, readFile } from "node:fs/promises";
5
5
  import pMap from "p-map";
6
6
  import prettyMilliseconds from "pretty-ms";
7
7
  import { glob } from "tinyglobby";
@@ -55,6 +55,11 @@ export default defineCommand({
55
55
  type: "number",
56
56
  description: "Number of concurrent copy operations (default: 8)",
57
57
  default: 8
58
+ },
59
+ gitignore: {
60
+ type: "boolean",
61
+ description: "Ignore files and directories specified in .gitignore",
62
+ default: false
58
63
  }
59
64
  },
60
65
  async run({ args }) {
@@ -64,7 +69,8 @@ export default defineCommand({
64
69
  recursive = true,
65
70
  preserveStructure = true,
66
71
  increment = false,
67
- concurrency = 8
72
+ concurrency = 8,
73
+ gitignore = false
68
74
  } = args;
69
75
  let finalSource = s;
70
76
  let finalDestination = d;
@@ -84,10 +90,22 @@ export default defineCommand({
84
90
  relinka("error", "Usage: dler copy --s <source> --d <destination>");
85
91
  process.exit(1);
86
92
  }
93
+ let ignorePatterns = recursive ? [] : ["**/*"];
94
+ if (gitignore) {
95
+ try {
96
+ const gitignoreContent = await readFile(".gitignore", "utf8");
97
+ ignorePatterns = ignorePatterns.concat(
98
+ gitignoreContent.split("\n").map((line) => line.trim()).filter((line) => line && !line.startsWith("#"))
99
+ );
100
+ } catch (err) {
101
+ relinka("error", ".gitignore not found or unreadable, but --gitignore was specified.");
102
+ process.exit(1);
103
+ }
104
+ }
87
105
  try {
88
106
  const files = await glob(finalSource, {
89
107
  dot: true,
90
- ignore: recursive ? [] : ["**/*"]
108
+ ignore: ignorePatterns
91
109
  });
92
110
  if (files.length === 0) {
93
111
  relinka("error", `No files found matching pattern: ${finalSource}`);
@@ -101,7 +101,9 @@ const analyzeProject = async (projectRoot) => {
101
101
  framework,
102
102
  dependencies,
103
103
  devDependencies,
104
- scripts: packageJson.scripts || {},
104
+ scripts: Object.fromEntries(
105
+ Object.entries(packageJson.scripts || {}).filter(([, v]) => typeof v === "string")
106
+ ),
105
107
  configFiles,
106
108
  sourceFiles,
107
109
  testFiles
@@ -0,0 +1,13 @@
1
+ declare const _default: import("@reliverse/rempts").Command<{
2
+ target: {
3
+ type: "string";
4
+ description: string;
5
+ required: true;
6
+ };
7
+ nonInteractive: {
8
+ type: "boolean";
9
+ description: string;
10
+ default: false;
11
+ };
12
+ }>;
13
+ export default _default;
@@ -0,0 +1,70 @@
1
+ import path from "@reliverse/pathkit";
2
+ import fs from "@reliverse/relifso";
3
+ import { relinka } from "@reliverse/relinka";
4
+ import { defineArgs, defineCommand, inputPrompt } from "@reliverse/rempts";
5
+ import { glob } from "tinyglobby";
6
+ export default defineCommand({
7
+ meta: {
8
+ name: "rm",
9
+ version: "1.1.0",
10
+ description: "Remove a file, directory, or glob pattern recursively."
11
+ },
12
+ args: defineArgs({
13
+ target: {
14
+ type: "string",
15
+ description: "Path or glob pattern to the file(s) or directory(ies) to remove.",
16
+ required: true
17
+ },
18
+ nonInteractive: {
19
+ type: "boolean",
20
+ description: "Disable interactive prompts and require all arguments to be provided via flags.",
21
+ default: false
22
+ }
23
+ }),
24
+ async run({ args }) {
25
+ const { nonInteractive } = args;
26
+ let { target } = args;
27
+ if (!target && !nonInteractive) {
28
+ target = await inputPrompt({
29
+ title: "Enter the path or glob pattern to remove:",
30
+ defaultValue: ""
31
+ });
32
+ }
33
+ if (!target) {
34
+ relinka("error", "No target path or pattern provided for removal.");
35
+ return;
36
+ }
37
+ let matches = [];
38
+ try {
39
+ matches = await glob(target, { dot: true });
40
+ } catch (error) {
41
+ relinka("error", `Invalid glob pattern: ${target}`);
42
+ return;
43
+ }
44
+ if (matches.length === 0) {
45
+ relinka("error", `No files or directories matched: ${target}`);
46
+ return;
47
+ }
48
+ let removedCount = 0;
49
+ for (const match of matches) {
50
+ const resolvedPath = path.resolve(match);
51
+ try {
52
+ if (!await fs.pathExists(resolvedPath)) {
53
+ relinka("warn", `Target does not exist: ${resolvedPath}`);
54
+ continue;
55
+ }
56
+ await fs.remove(resolvedPath);
57
+ relinka("log", `Removed: ${resolvedPath}`);
58
+ removedCount++;
59
+ } catch (error) {
60
+ const errorMessage = error instanceof Error ? error.message : String(error);
61
+ relinka("error", `Failed to remove '${resolvedPath}': ${errorMessage}`);
62
+ }
63
+ }
64
+ if (removedCount > 0) {
65
+ relinka("log", `Successfully removed ${removedCount} item(s) matching: ${target}`);
66
+ } else {
67
+ relinka("warn", `No items were removed for pattern: ${target}`);
68
+ }
69
+ }
70
+ });
@@ -10,15 +10,14 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
10
10
  projectDomain?: string | undefined;
11
11
  projectGitService?: "none" | "github" | "gitlab" | "bitbucket" | undefined;
12
12
  projectDeployService?: "none" | "vercel" | "netlify" | "railway" | "deno" | undefined;
13
- projectPackageManager?: "npm" | "bun" | "yarn" | "pnpm" | undefined;
14
- projectState?: "creating" | "created" | undefined;
15
- projectCategory?: "cli" | "unknown" | "browser" | "website" | "vscode" | "library" | "mobile" | undefined;
13
+ projectPackageManager?: "bun" | "npm" | "pnpm" | "yarn" | undefined;
14
+ projectState?: "created" | "creating" | undefined;
15
+ projectCategory?: "browser" | "cli" | "unknown" | "website" | "vscode" | "library" | "mobile" | undefined;
16
16
  projectSubcategory?: "unknown" | "e-commerce" | "tool" | undefined;
17
- projectFramework?: "rempts" | "npm-jsr" | "vue" | "unknown" | "vscode" | "nextjs" | "vite" | "svelte" | "remix" | "astro" | "nuxt" | "solid" | "qwik" | "wxt" | "lynx" | "react-native" | "expo" | "capacitor" | "ionic" | "electron" | "tauri" | "neutralino" | "citty" | "commander" | "cac" | "meow" | "yargs" | "webextension" | "browser-extension" | undefined;
17
+ projectFramework?: "vue" | "svelte" | "npm-jsr" | "unknown" | "vscode" | "nextjs" | "vite" | "remix" | "astro" | "nuxt" | "solid" | "qwik" | "wxt" | "lynx" | "react-native" | "expo" | "capacitor" | "ionic" | "electron" | "tauri" | "neutralino" | "rempts" | "citty" | "commander" | "cac" | "meow" | "yargs" | "webextension" | "browser-extension" | undefined;
18
18
  projectTemplate?: "unknown" | "blefnk/relivator-nextjs-template" | "blefnk/relivator-docker-template" | "blefnk/next-react-ts-src-minimal" | "blefnk/all-in-one-nextjs-template" | "blefnk/create-t3-app" | "blefnk/create-next-app" | "blefnk/astro-starlight-template" | "blefnk/versator-nextjs-template" | "blefnk/relivator-lynxjs-template" | "blefnk/relivator-react-native-template" | "reliverse/template-browser-extension" | "microsoft/vscode-extension-samples" | "microsoft/vscode-extension-template" | "rsetarter-template" | "blefnk/deno-cli-tutorial" | undefined;
19
19
  projectTemplateDate?: string | undefined;
20
20
  features?: {
21
- commands?: string[] | undefined;
22
21
  i18n?: boolean | undefined;
23
22
  analytics?: boolean | undefined;
24
23
  themeMode?: "light" | "dark" | "dark-light" | undefined;
@@ -28,6 +27,7 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
28
27
  testing?: boolean | undefined;
29
28
  docker?: boolean | undefined;
30
29
  ci?: boolean | undefined;
30
+ commands?: string[] | undefined;
31
31
  webview?: string[] | undefined;
32
32
  language?: string[] | undefined;
33
33
  themes?: string[] | undefined;
@@ -38,13 +38,13 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
38
38
  analytics?: "unknown" | "vercel" | undefined;
39
39
  authentication?: "unknown" | "better-auth" | "clerk" | "next-auth" | "supabase-auth" | "auth0" | undefined;
40
40
  api?: "rest" | "unknown" | "hono" | "trpc" | "graphql" | undefined;
41
- testing?: "bun" | "unknown" | "vitest" | "jest" | "playwright" | "cypress" | undefined;
41
+ testing?: "bun" | "jest" | "vitest" | "unknown" | "playwright" | "cypress" | undefined;
42
42
  stateManagement?: "unknown" | "zustand" | "jotai" | "redux-toolkit" | undefined;
43
43
  formManagement?: "unknown" | "react-hook-form" | "formik" | undefined;
44
44
  styling?: "sass" | "unknown" | "tailwind" | "styled-components" | "css-modules" | undefined;
45
45
  uiComponents?: "unknown" | "shadcn-ui" | "chakra-ui" | "material-ui" | undefined;
46
46
  databaseLibrary?: "unknown" | "drizzle" | "prisma" | "supabase" | undefined;
47
- databaseProvider?: "unknown" | "pg" | "mysql" | "sqlite" | "mongodb" | undefined;
47
+ databaseProvider?: "pg" | "sqlite" | "unknown" | "mysql" | "mongodb" | undefined;
48
48
  linting?: "eslint" | "unknown" | undefined;
49
49
  formatting?: "biome" | "unknown" | undefined;
50
50
  payment?: "unknown" | "stripe" | undefined;
@@ -57,7 +57,7 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
57
57
  documentation?: "unknown" | "starlight" | "nextra" | undefined;
58
58
  icons?: "unknown" | "lucide" | undefined;
59
59
  mail?: "unknown" | "resend" | undefined;
60
- cache?: "unknown" | "redis" | undefined;
60
+ cache?: "redis" | "unknown" | undefined;
61
61
  storage?: "unknown" | "cloudflare" | undefined;
62
62
  cdn?: "unknown" | "cloudflare" | undefined;
63
63
  cms?: "unknown" | "contentlayer" | undefined;
@@ -67,7 +67,7 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
67
67
  dates?: "unknown" | "dayjs" | undefined;
68
68
  markdown?: "unknown" | "mdx" | undefined;
69
69
  security?: "unknown" | "auth" | undefined;
70
- routing?: "unknown" | "next" | "react-router" | "tanstack-router" | undefined;
70
+ routing?: "next" | "unknown" | "react-router" | "tanstack-router" | undefined;
71
71
  } | undefined;
72
72
  codeStyle?: {
73
73
  lineWidth?: number | undefined;
@@ -83,7 +83,7 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
83
83
  dontRemoveComments?: boolean | undefined;
84
84
  shouldAddComments?: boolean | undefined;
85
85
  typeOrInterface?: "type" | "interface" | "mixed" | undefined;
86
- importOrRequire?: "require" | "import" | "mixed" | undefined;
86
+ importOrRequire?: "import" | "require" | "mixed" | undefined;
87
87
  cjsToEsm?: boolean | undefined;
88
88
  modernize?: {
89
89
  replaceFs?: boolean | undefined;
@@ -96,7 +96,7 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
96
96
  importSymbol?: string | undefined;
97
97
  } | undefined;
98
98
  monorepo?: {
99
- type?: "none" | "bun" | "pnpm" | "turborepo" | "nx" | undefined;
99
+ type?: "none" | "bun" | "turborepo" | "nx" | "pnpm" | undefined;
100
100
  packages?: string[] | undefined;
101
101
  sharedPackages?: string[] | undefined;
102
102
  } | undefined;
@@ -111,9 +111,9 @@ export declare const defineConfigRse: (userConfig?: Partial<RseConfig>) => {
111
111
  customReposOnNewProject?: boolean | undefined;
112
112
  envComposerOpenBrowser?: boolean | undefined;
113
113
  repoBranch?: string | undefined;
114
- repoPrivacy?: "unknown" | "public" | "private" | undefined;
114
+ repoPrivacy?: "private" | "public" | "unknown" | undefined;
115
115
  projectArchitecture?: "unknown" | "fullstack" | "separated" | undefined;
116
- projectRuntime?: "node" | "bun" | "deno" | undefined;
116
+ projectRuntime?: "bun" | "node" | "deno" | undefined;
117
117
  skipPromptsUseAutoBehavior?: boolean | undefined;
118
118
  deployBehavior?: "prompt" | "autoYes" | "autoNo" | undefined;
119
119
  depsBehavior?: "prompt" | "autoYes" | "autoNo" | undefined;
@@ -120,7 +120,7 @@ async function emitVueTscV2(vfs, inputFiles, originFiles, opts) {
120
120
  },
121
121
  // @ts-expect-error TODO: fix ts
122
122
  options.options,
123
- vueLanguageCore.resolveVueCompilerOptions({})
123
+ {}
124
124
  );
125
125
  return [vueLanguagePlugin];
126
126
  });
@@ -1,5 +1,5 @@
1
1
  import { endPrompt, startPrompt } from "@reliverse/rempts";
2
- const version = "1.7.57";
2
+ const version = "1.7.59";
3
3
  export async function showStartPrompt(isDev) {
4
4
  await startPrompt({
5
5
  titleColor: "inverse",
@@ -73,7 +73,6 @@ function getPublishArtifacts(isDev) {
73
73
  function getFilterDepsPatterns(isDev) {
74
74
  return isDev ? `{
75
75
  global: [
76
- "bun",
77
76
  "@types",
78
77
  "biome",
79
78
  "eslint",
@@ -86,10 +85,10 @@ function getFilterDepsPatterns(isDev) {
86
85
  "!@reliverse/dler-sdk",
87
86
  ],
88
87
  "dist-npm": [],
89
- "dist-jsr": [],
88
+ "dist-jsr": ["+bun"],
90
89
  "dist-libs": {
91
90
  "@reliverse/dler-sdk": {
92
- jsr: ["!bun"],
91
+ jsr: ["+bun"],
93
92
  npm: [],
94
93
  },
95
94
  },
@@ -54,6 +54,10 @@ export async function removeLogInternalCalls(targetDir) {
54
54
  /relinka\s*\(\s*["']internal["']\s*,\s*(?:`[^`]*`|'[^']*'|"[^"]*"|(?:[^;]*?,\s*)*[^;]*?)\s*\)\s*;?/g,
55
55
  ""
56
56
  );
57
+ newContent = newContent.replace(
58
+ /relinka\.internal\s*\(\s*(?:`[^`]*`|'[^']*'|"[^"]*"|(?:[^;]*?,\s*)*[^;]*?)\s*\)\s*;?/g,
59
+ ""
60
+ );
57
61
  newContent = newContent.replace(/\n\s*\n\s*\n/g, "\n\n").replace(/^\s*\n/gm, "").replace(/\n\s*$/g, "\n");
58
62
  if (newContent !== content) {
59
63
  await fs.writeFile(filePath, newContent);
package/package.json CHANGED
@@ -5,8 +5,8 @@
5
5
  "@reliverse/reglob": "^1.0.0",
6
6
  "@reliverse/relico": "^1.1.2",
7
7
  "@reliverse/relifso": "^1.4.5",
8
- "@reliverse/relinka": "^1.5.2",
9
- "@reliverse/rempts": "^1.7.37",
8
+ "@reliverse/relinka": "^1.5.3",
9
+ "@reliverse/rempts": "^1.7.40",
10
10
  "@reliverse/runtime": "^1.0.3",
11
11
  "@rollup/plugin-alias": "^5.1.1",
12
12
  "@rollup/plugin-commonjs": "^28.0.6",
@@ -14,8 +14,9 @@
14
14
  "@rollup/plugin-node-resolve": "^16.0.1",
15
15
  "@rollup/plugin-replace": "^6.0.2",
16
16
  "@rollup/pluginutils": "^5.2.0",
17
- "@sinclair/typebox": "^0.34.35",
17
+ "@sinclair/typebox": "^0.34.37",
18
18
  "autoprefixer": "^10.4.21",
19
+ "bun-plugin-tailwind": "^0.0.15",
19
20
  "c12": "^3.0.4",
20
21
  "confbox": "^0.2.2",
21
22
  "cssnano": "^7.0.7",
@@ -34,12 +35,12 @@
34
35
  "nypm": "^0.6.0",
35
36
  "p-all": "^5.0.0",
36
37
  "p-map": "^7.0.3",
37
- "pkg-types": "^2.1.0",
38
+ "pkg-types": "^2.2.0",
38
39
  "postcss": "^8.5.6",
39
40
  "postcss-nested": "^7.0.2",
40
41
  "pretty-bytes": "^7.0.0",
41
42
  "pretty-ms": "^9.2.0",
42
- "rollup": "^4.43.0",
43
+ "rollup": "^4.44.1",
43
44
  "rollup-plugin-dts": "^6.2.1",
44
45
  "scule": "^1.3.0",
45
46
  "semver": "^7.7.2",
@@ -53,7 +54,7 @@
53
54
  "license": "MIT",
54
55
  "name": "@reliverse/dler",
55
56
  "type": "module",
56
- "version": "1.7.57",
57
+ "version": "1.7.59",
57
58
  "keywords": [
58
59
  "reliverse",
59
60
  "cli",