Skip to content

Commit aef6086

Browse files
committed
fix import
1 parent 9ed1a04 commit aef6086

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ looked into it.
4040
What you can do is render to textures and then read them back. You can also run compute shaders
4141
and read their results.
4242

43-
# Updating
43+
## Bugs
44+
45+
## Updating
4446

4547
This updates to the latest dawn and depot_tools
4648

@@ -49,12 +51,12 @@ npm ci
4951
npm run update
5052
```
5153

52-
# Building on all supported platforms
54+
## Building on all supported platforms
5355

5456
Push a new version. Check the github actions. You should see build artifacts
5557
added to the bottom of the latest action run.
5658

57-
# Building
59+
## Building
5860

5961
This builds for the local OS (win64,macOS-intel,macOS-arm,linux)
6062

@@ -63,9 +65,9 @@ npm ci
6365
npm run build
6466
```
6567

66-
## Prerequisites
68+
### Prerequisites
6769

68-
### Windows
70+
#### Windows
6971

7072
Before running the build script above you must have
7173
Visual Studio C++ installed and have run the `vcvars64.bat` file.
@@ -78,7 +80,7 @@ And you must have `node.js` installed, at least version 18.
7880
I recommend using [nvm-windows](https://github.com/coreybutler/nvm-windows) to install it
7981
as it makes it easy to switch version
8082

81-
### MacOS
83+
#### MacOS
8284

8385
Before running the build script above you must have
8486
XCode installed and its command line tools
@@ -90,7 +92,7 @@ And you must have `node.js` installed, at least version 18.
9092
I recommend using [nvm](https://github.com/nvm-sh/nvm) to install it
9193
as it makes it easy to switch versions.
9294

93-
### Linux (Ubuntu)
95+
#### Linux (Ubuntu)
9496

9597
Before running the build script above you need to install
9698
the following dependencies
@@ -102,3 +104,7 @@ sudo apt-get install cmake libxrandr-dev libxinerama-dev libxcursor-dev mesa-com
102104
And you must have `node.js` installed, at least version 18.
103105
I recommend using [nvm](https://github.com/nvm-sh/nvm) to install it
104106
as it makes it easy to switch versions.
107+
108+
## License
109+
110+
MIT: https://dawn.googlesource.com/dawn/+/HEAD/LICENSE

build/prep-for-publish.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import fs from 'node:fs';
12

23
function fixupGitignore() {
34
const s = fs.readFileSync('.gitignore', {encoding: 'utf8'});

0 commit comments

Comments
 (0)