@rolldown/browser 1.0.0-beta.8-commit.852c603 → 1.0.0-beta.8-commit.a720367
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/browser.mjs +1464 -498
- package/dist/cli.cjs +7 -7
- package/dist/cli.mjs +3 -3
- package/dist/experimental-index.cjs +3 -3
- package/dist/experimental-index.d.cts +1 -1
- package/dist/experimental-index.d.mts +1 -1
- package/dist/experimental-index.mjs +3 -3
- package/dist/filter-index.cjs +12 -0
- package/dist/{filter-expression-index.d.cts → filter-index.d.cts} +2 -2
- package/dist/{filter-expression-index.d.mts → filter-index.d.mts} +2 -2
- package/dist/filter-index.mjs +4 -0
- package/dist/index.cjs +4 -5
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +4 -4
- package/dist/parallel-plugin-worker.cjs +3 -3
- package/dist/parallel-plugin-worker.mjs +3 -3
- package/dist/parallel-plugin.d.cts +1 -1
- package/dist/parallel-plugin.d.mts +1 -1
- package/dist/parse-ast-index.cjs +1 -1
- package/dist/parse-ast-index.mjs +1 -1
- package/dist/rolldown-binding.wasm32-wasi.wasm +0 -0
- package/dist/shared/filter-index-ChddWdsi.cjs +255 -0
- package/dist/shared/filter-index-DmisSKZF.mjs +174 -0
- package/dist/shared/{input-options.d-C0G2toUx.d.cts → input-options.d-CBiF1NIG.d.cts} +22 -24
- package/dist/shared/{input-options.d-D_2wMOSn.d.mts → input-options.d-LWRQj-14.d.mts} +22 -24
- package/dist/shared/{src-RM00Zc4c.mjs → src-D1Nyx72w.mjs} +1754 -511
- package/dist/shared/{src-DbbYa-_8.cjs → src-zKH-Bkca.cjs} +1755 -518
- package/package.json +2 -4
- package/dist/filter-expression-index.cjs +0 -11
- package/dist/filter-expression-index.mjs +0 -4
- package/dist/shared/filter-expression-index-CIS7Rrin.mjs +0 -69
- package/dist/shared/filter-expression-index-CRtoeipP.cjs +0 -119
- /package/dist/shared/{parse-ast-index-DWHg_E7J.mjs → parse-ast-index-B5wGnMSg.mjs} +0 -0
- /package/dist/shared/{parse-ast-index-B9pj8J1q.cjs → parse-ast-index-DTWvag1h.cjs} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolldown/browser",
|
|
3
|
-
"version": "1.0.0-beta.8-commit.
|
|
3
|
+
"version": "1.0.0-beta.8-commit.a720367",
|
|
4
4
|
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",
|
|
5
5
|
"homepage": "https://rolldown.rs/",
|
|
6
6
|
"type": "module",
|
|
@@ -56,10 +56,8 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@napi-rs/wasm-runtime": "^0.2.8",
|
|
58
58
|
"@oxc-project/types": "0.67.0",
|
|
59
|
-
"@valibot/to-json-schema": "1.0.0",
|
|
60
59
|
"ansis": "^3.17.0",
|
|
61
|
-
"pathe": "^2.0.3"
|
|
62
|
-
"valibot": "1.0.0"
|
|
60
|
+
"pathe": "^2.0.3"
|
|
63
61
|
},
|
|
64
62
|
"peerDependencies": {
|
|
65
63
|
"@oxc-project/runtime": "0.67.0"
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
const require_filter_expression_index = require('./shared/filter-expression-index-CRtoeipP.cjs');
|
|
2
|
-
|
|
3
|
-
exports.And = require_filter_expression_index.And
|
|
4
|
-
exports.and = require_filter_expression_index.and
|
|
5
|
-
exports.code = require_filter_expression_index.code
|
|
6
|
-
exports.exclude = require_filter_expression_index.exclude
|
|
7
|
-
exports.id = require_filter_expression_index.id
|
|
8
|
-
exports.include = require_filter_expression_index.include
|
|
9
|
-
exports.moduleType = require_filter_expression_index.moduleType
|
|
10
|
-
exports.not = require_filter_expression_index.not
|
|
11
|
-
exports.or = require_filter_expression_index.or
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { __esm } from "./chunk-DSsiIF1Z.mjs";
|
|
2
|
-
|
|
3
|
-
//#region src/filter-expression-index.ts
|
|
4
|
-
function and(left, right) {
|
|
5
|
-
return {
|
|
6
|
-
kind: "and",
|
|
7
|
-
left,
|
|
8
|
-
right
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
function or(left, right) {
|
|
12
|
-
return {
|
|
13
|
-
kind: "or",
|
|
14
|
-
left,
|
|
15
|
-
right
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
function not(expr) {
|
|
19
|
-
return {
|
|
20
|
-
kind: "not",
|
|
21
|
-
expr
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
function id(pattern) {
|
|
25
|
-
return {
|
|
26
|
-
kind: "id",
|
|
27
|
-
pattern
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
function moduleType(pattern) {
|
|
31
|
-
return {
|
|
32
|
-
kind: "moduleType",
|
|
33
|
-
pattern
|
|
34
|
-
};
|
|
35
|
-
}
|
|
36
|
-
function code(pattern) {
|
|
37
|
-
return {
|
|
38
|
-
kind: "code",
|
|
39
|
-
pattern
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
function include(expr) {
|
|
43
|
-
return {
|
|
44
|
-
kind: "include",
|
|
45
|
-
expr
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
function exclude(expr) {
|
|
49
|
-
return {
|
|
50
|
-
kind: "exclude",
|
|
51
|
-
expr
|
|
52
|
-
};
|
|
53
|
-
}
|
|
54
|
-
var And;
|
|
55
|
-
var init_filter_expression_index = __esm({ "src/filter-expression-index.ts"() {
|
|
56
|
-
And = class {
|
|
57
|
-
kind;
|
|
58
|
-
left;
|
|
59
|
-
right;
|
|
60
|
-
constructor(left, right) {
|
|
61
|
-
this.left = left;
|
|
62
|
-
this.right = right;
|
|
63
|
-
this.kind = "and";
|
|
64
|
-
}
|
|
65
|
-
};
|
|
66
|
-
} });
|
|
67
|
-
|
|
68
|
-
//#endregion
|
|
69
|
-
export { And, and, code, exclude, id, include, init_filter_expression_index, moduleType, not, or };
|
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
//#region src/filter-expression-index.ts
|
|
4
|
-
var And = class {
|
|
5
|
-
kind;
|
|
6
|
-
left;
|
|
7
|
-
right;
|
|
8
|
-
constructor(left, right) {
|
|
9
|
-
this.left = left;
|
|
10
|
-
this.right = right;
|
|
11
|
-
this.kind = "and";
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
function and(left, right) {
|
|
15
|
-
return {
|
|
16
|
-
kind: "and",
|
|
17
|
-
left,
|
|
18
|
-
right
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
function or(left, right) {
|
|
22
|
-
return {
|
|
23
|
-
kind: "or",
|
|
24
|
-
left,
|
|
25
|
-
right
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
function not(expr) {
|
|
29
|
-
return {
|
|
30
|
-
kind: "not",
|
|
31
|
-
expr
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
function id(pattern) {
|
|
35
|
-
return {
|
|
36
|
-
kind: "id",
|
|
37
|
-
pattern
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
function moduleType(pattern) {
|
|
41
|
-
return {
|
|
42
|
-
kind: "moduleType",
|
|
43
|
-
pattern
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
function code(pattern) {
|
|
47
|
-
return {
|
|
48
|
-
kind: "code",
|
|
49
|
-
pattern
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
function include(expr) {
|
|
53
|
-
return {
|
|
54
|
-
kind: "include",
|
|
55
|
-
expr
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
function exclude(expr) {
|
|
59
|
-
return {
|
|
60
|
-
kind: "exclude",
|
|
61
|
-
expr
|
|
62
|
-
};
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
//#endregion
|
|
66
|
-
Object.defineProperty(exports, 'And', {
|
|
67
|
-
enumerable: true,
|
|
68
|
-
get: function () {
|
|
69
|
-
return And;
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
Object.defineProperty(exports, 'and', {
|
|
73
|
-
enumerable: true,
|
|
74
|
-
get: function () {
|
|
75
|
-
return and;
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
Object.defineProperty(exports, 'code', {
|
|
79
|
-
enumerable: true,
|
|
80
|
-
get: function () {
|
|
81
|
-
return code;
|
|
82
|
-
}
|
|
83
|
-
});
|
|
84
|
-
Object.defineProperty(exports, 'exclude', {
|
|
85
|
-
enumerable: true,
|
|
86
|
-
get: function () {
|
|
87
|
-
return exclude;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
Object.defineProperty(exports, 'id', {
|
|
91
|
-
enumerable: true,
|
|
92
|
-
get: function () {
|
|
93
|
-
return id;
|
|
94
|
-
}
|
|
95
|
-
});
|
|
96
|
-
Object.defineProperty(exports, 'include', {
|
|
97
|
-
enumerable: true,
|
|
98
|
-
get: function () {
|
|
99
|
-
return include;
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
Object.defineProperty(exports, 'moduleType', {
|
|
103
|
-
enumerable: true,
|
|
104
|
-
get: function () {
|
|
105
|
-
return moduleType;
|
|
106
|
-
}
|
|
107
|
-
});
|
|
108
|
-
Object.defineProperty(exports, 'not', {
|
|
109
|
-
enumerable: true,
|
|
110
|
-
get: function () {
|
|
111
|
-
return not;
|
|
112
|
-
}
|
|
113
|
-
});
|
|
114
|
-
Object.defineProperty(exports, 'or', {
|
|
115
|
-
enumerable: true,
|
|
116
|
-
get: function () {
|
|
117
|
-
return or;
|
|
118
|
-
}
|
|
119
|
-
});
|
|
File without changes
|
|
File without changes
|