mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
update webkit (#14449)
This commit is contained in:
@@ -2,7 +2,7 @@ option(WEBKIT_VERSION "The version of WebKit to use")
|
||||
option(WEBKIT_LOCAL "If a local version of WebKit should be used instead of downloading")
|
||||
|
||||
if(NOT WEBKIT_VERSION)
|
||||
set(WEBKIT_VERSION 0a0a3838e5fab36b579df26620237bb62ed6d950)
|
||||
set(WEBKIT_VERSION 019ff6e1e879ff4533f2a857cab5028b6b95ab53)
|
||||
endif()
|
||||
|
||||
if(WEBKIT_LOCAL)
|
||||
|
||||
BIN
test/bun.lockb
BIN
test/bun.lockb
Binary file not shown.
40
test/integration/sass/__snapshots__/sass.test.ts.snap
Normal file
40
test/integration/sass/__snapshots__/sass.test.ts.snap
Normal file
@@ -0,0 +1,40 @@
|
||||
// Bun Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`sass source maps 1`] = `
|
||||
{
|
||||
"css":
|
||||
".ruleGroup {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
padding: 0.5rem;
|
||||
border-width: 1px;
|
||||
}"
|
||||
,
|
||||
"loadedUrls": [],
|
||||
}
|
||||
`;
|
||||
|
||||
exports[`sass source maps 2`] = `
|
||||
{
|
||||
"css":
|
||||
".ruleGroup {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
padding: 0.5rem;
|
||||
border-width: 1px;
|
||||
}"
|
||||
,
|
||||
"loadedUrls": [],
|
||||
"sourceMap": {
|
||||
"mappings": "AAAA;EACI;EACA;EACA;EACA;EACA",
|
||||
"names": [],
|
||||
"sourceRoot": "",
|
||||
"sources": [
|
||||
"data:;charset=utf-8,.ruleGroup%20%7B%0A%20%20%20%20display:%20flex;%0A%20%20%20%20flex-direction:%20column;%0A%20%20%20%20gap:%200.5rem;%0A%20%20%20%20padding:%200.5rem;%0A%20%20%20%20border-width:%201px;%0A%20%20%7D%0A%20%20",
|
||||
],
|
||||
"version": 3,
|
||||
},
|
||||
}
|
||||
`;
|
||||
15
test/integration/sass/sass.test.ts
Normal file
15
test/integration/sass/sass.test.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { compileString } from "sass";
|
||||
|
||||
test("sass source maps", () => {
|
||||
const scssString = `.ruleGroup {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
padding: 0.5rem;
|
||||
border-width: 1px;
|
||||
}
|
||||
`;
|
||||
|
||||
expect(compileString(scssString, { sourceMap: false })).toMatchSnapshot();
|
||||
expect(compileString(scssString, { sourceMap: true })).toMatchSnapshot();
|
||||
});
|
||||
@@ -19,13 +19,13 @@
|
||||
"@types/ws": "8.5.10",
|
||||
"aws-cdk-lib": "2.148.0",
|
||||
"axios": "1.6.8",
|
||||
"https-proxy-agent": "7.0.5",
|
||||
"body-parser": "1.20.2",
|
||||
"comlink": "4.4.1",
|
||||
"es-module-lexer": "1.3.0",
|
||||
"esbuild": "0.18.6",
|
||||
"express": "4.18.2",
|
||||
"fast-glob": "3.3.1",
|
||||
"https-proxy-agent": "7.0.5",
|
||||
"iconv-lite": "0.6.3",
|
||||
"isbot": "5.1.13",
|
||||
"jest-extended": "4.0.0",
|
||||
@@ -47,6 +47,7 @@
|
||||
"prompts": "2.4.2",
|
||||
"reflect-metadata": "0.1.13",
|
||||
"rollup": "4.4.1",
|
||||
"sass": "1.79.4",
|
||||
"sharp": "0.33.0",
|
||||
"sinon": "6.0.0",
|
||||
"socket.io": "4.7.1",
|
||||
|
||||
Reference in New Issue
Block a user