Skip to content

Commit 51975a1

Browse files
authored
feat(create-rsbuild): update all dependencies (#1561)
1 parent 2e85275 commit 51975a1

File tree

34 files changed

+258
-424
lines changed

34 files changed

+258
-424
lines changed

e2e/cases/pug/vue3-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"name": "@e2e/pug-vue3",
44
"version": "1.0.0",
55
"dependencies": {
6-
"vue": "^3.3.4"
6+
"vue": "^3.4.19"
77
}
88
}

e2e/cases/svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"devDependencies": {
99
"less": "^4.2.0",
10-
"sass": "^1.69.5",
10+
"sass": "^1.70.0",
1111
"stylus": "0.62.0"
1212
}
1313
}

e2e/cases/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"name": "@e2e/vue3",
44
"version": "1.0.0",
55
"dependencies": {
6-
"vue": "^3.3.4"
6+
"vue": "^3.4.19"
77
}
88
}

e2e/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"preact": "^10.19.3",
1414
"react": "^18.2.0",
1515
"react-dom": "^18.2.0",
16-
"react-router-dom": "^6.17.0",
16+
"react-router-dom": "^6.22.0",
1717
"solid-js": "^1.8.5",
18-
"vue": "^3.3.4",
18+
"vue": "^3.4.19",
1919
"vue-router": "^4.2.5"
2020
},
2121
"devDependencies": {

examples/lit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"devDependencies": {
1010
"@rsbuild/core": "workspace:*",
11-
"lit": "^3.0.2",
11+
"lit": "^3.1.2",
1212
"typescript": "^5.3.0"
1313
}
1414
}

examples/vue3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"preview": "rsbuild preview"
99
},
1010
"dependencies": {
11-
"vue": "^3.3.4"
11+
"vue": "^3.4.19"
1212
},
1313
"devDependencies": {
1414
"@rsbuild/core": "workspace:*",

packages/core/compiled/dotenv/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/compiled/dotenv/lib/main.d.ts

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// TypeScript Version: 3.0
22
/// <reference types="node" />
3-
import type { URL } from 'node:url';
3+
import type { URL } from 'url';
44

55
export interface DotenvParseOutput {
66
[name: string]: string;
@@ -9,7 +9,7 @@ export interface DotenvParseOutput {
99
/**
1010
* Parses a string or buffer in the .env file format into an object.
1111
*
12-
* See https://docs.dotenv.org
12+
* See https://dotenvx.com/docs
1313
*
1414
* @param src - contents to be parsed. example: `'DB_HOST=localhost'`
1515
* @returns an object with keys and values based on `src`. example: `{ DB_HOST : 'localhost' }`
@@ -23,10 +23,12 @@ export interface DotenvConfigOptions {
2323
* Default: `path.resolve(process.cwd(), '.env')`
2424
*
2525
* Specify a custom path if your file containing environment variables is located elsewhere.
26+
* Can also be an array of strings, specifying multiple paths.
2627
*
2728
* example: `require('dotenv').config({ path: '/custom/path/to/.env' })`
29+
* example: `require('dotenv').config({ path: ['/path/to/first.env', '/path/to/second.env'] })`
2830
*/
29-
path?: string | URL;
31+
path?: string | string[] | URL;
3032

3133
/**
3234
* Default: `utf8`
@@ -69,7 +71,7 @@ export interface DotenvConfigOptions {
6971
*
7072
* Pass the DOTENV_KEY directly to config options. Defaults to looking for process.env.DOTENV_KEY environment variable. Note this only applies to decrypting .env.vault files. If passed as null or undefined, or not passed at all, dotenv falls back to its traditional job of parsing a .env file.
7173
*
72-
* example: `require('dotenv').config({ DOTENV_KEY: 'dotenv://:key_1234…@dotenv.org/vault/.env.vault?environment=production' })`
74+
* example: `require('dotenv').config({ DOTENV_KEY: 'dotenv://:key_1234…@dotenvx.com/vault/.env.vault?environment=production' })`
7375
*/
7476
DOTENV_KEY?: string;
7577
}
@@ -106,7 +108,7 @@ export interface DotenvPopulateInput {
106108
/**
107109
* Loads `.env` file contents into process.env by default. If `DOTENV_KEY` is present, it smartly attempts to load encrypted `.env.vault` file contents into process.env.
108110
*
109-
* See https://docs.dotenv.org
111+
* See https://dotenvx.com/docs
110112
*
111113
* @param options - additional options. example: `{ path: './custom/path', encoding: 'latin1', debug: true, override: false }`
112114
* @returns an object with a `parsed` key if successful or `error` key if an error occurred. example: { parsed: { KEY: 'value' } }
@@ -117,7 +119,7 @@ export function config(options?: DotenvConfigOptions): DotenvConfigOutput;
117119
/**
118120
* Loads `.env` file contents into process.env.
119121
*
120-
* See https://docs.dotenv.org
122+
* See https://dotenvx.com/docs
121123
*
122124
* @param options - additional options. example: `{ path: './custom/path', encoding: 'latin1', debug: true, override: false }`
123125
* @returns an object with a `parsed` key if successful or `error` key if an error occurred. example: { parsed: { KEY: 'value' } }
@@ -128,7 +130,7 @@ export function configDotenv(options?: DotenvConfigOptions): DotenvConfigOutput;
128130
/**
129131
* Loads `source` json contents into `target` like process.env.
130132
*
131-
* See https://docs.dotenv.org
133+
* See https://dotenvx.com/docs
132134
*
133135
* @param processEnv - the target JSON object. in most cases use process.env but you can also pass your own JSON object
134136
* @param parsed - the source JSON object
@@ -141,7 +143,7 @@ export function populate(processEnv: DotenvPopulateInput, parsed: DotenvPopulate
141143
/**
142144
* Decrypt ciphertext
143145
*
144-
* See https://docs.dotenv.org
146+
* See https://dotenvx.com/docs
145147
*
146148
* @param encrypted - the encrypted ciphertext string
147149
* @param keyStr - the decryption key string
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name":"dotenv","version":"16.3.2","funding":"https://github.com/motdotla/dotenv?sponsor=1","license":"BSD-2-Clause","types":"lib/main.d.ts","type":"commonjs"}
1+
{"name":"dotenv","version":"16.4.3","funding":"https://dotenvx.com","license":"BSD-2-Clause","types":"lib/main.d.ts","type":"commonjs"}

0 commit comments

Comments
 (0)