463 Commits

Author SHA1 Message Date
Alex Crichton
fd0e80576e Add deprecation notice to readme 2025-08-25 12:34:18 -07:00
Alex Crichton
ab4c1bc5fa Add unmaintained banner 2025-07-29 22:48:23 -07:00
Alex Crichton
86ce2cdd71 Add unmaintained header 2025-07-29 22:46:48 -07:00
Nick Fitzgerald
366042affd Merge pull request #247 from noritada/typo-fix
Typo fix: removing characters which seem to have been accidentally inserted
2021-01-08 13:59:16 -08:00
Noritada Kobayashi
275a5c20b0 Remove characters which seem to have been accidentally inserted
These characters inserted in bb3451f035
fill in an empty line between a paragraph and an image.
2021-01-05 01:25:26 +09:00
Nick Fitzgerald
05338e1313 Merge pull request #206 from dlqs/master
make clearer where to add web-sys as dependency in Debugging chapter
2020-12-09 12:14:21 -08:00
Nick Fitzgerald
f40dd6d294 Merge pull request #225 from gdetrez/patch-1
Update link to cranelift source code
2020-12-09 12:10:40 -08:00
Nick Fitzgerald
a22a6aeaf5 Merge pull request #228 from brettcannon/patch-1
Drop Greenkeeper mention
2020-12-09 12:10:16 -08:00
Nick Fitzgerald
0c31a33a1d Merge pull request #230 from brettcannon/patch-2
Update factorial example from using get_local to local.get
2020-12-09 12:09:57 -08:00
Nick Fitzgerald
ffe0b33e64 Merge pull request #245 from DrupFlip/patch-1
Corrected a typo
2020-12-09 12:08:48 -08:00
DrupFlip
cc20ef2518 Corrected a typo 2020-12-09 20:27:57 +02:00
Brett Cannon
36cc9223a2 Update factorial example from using get_local to local.get
Closes #229
2020-06-20 19:27:18 -07:00
Brett Cannon
28e708731a Drop Greenkeeper mention
The project is closing.

Closes #227
2020-06-20 19:07:47 -07:00
Grégoire Détrez
77d86498d0 Update link to cranelift source code
The existing url redirects to https://github.com/bytecodealliance/cranelift which then has a note saying the code has moved.
2020-06-14 13:15:30 +02:00
Donald
78afe02ac1 make clearer where to add web-sys as dependency 2020-01-14 01:50:51 +08:00
Nick Fitzgerald
ba061b5446 Merge pull request #199 from jaeh/patch-1
typo devDependiecs to devDependencies
2019-11-20 16:16:01 -08:00
jascha ehrenreich
d2aeb1bff3 typo devDependiecs to devDependencies 2019-11-21 01:08:39 +01:00
Nick Fitzgerald
149dc138f4 Merge pull request #194 from d0iasm/master
Update the template source code
2019-10-28 14:03:27 -07:00
Asami Doi
93b88014c0 Revert the project name 2019-10-27 20:25:37 +09:00
Nick Fitzgerald
7d50dc63fb Merge pull request #196 from petosorus/npm_init_evolution
change 'adding a line to dependencies' to 'adding dependencies'
2019-10-24 09:27:47 -07:00
Thomas Graviou
7abe0ef661 change 'adding a line to dependencies' to 'adding dependencies' 2019-10-24 13:22:44 +02:00
Asami Doi
7f570329fb Update the template source code 2019-10-23 08:51:51 +09:00
Nick Fitzgerald
ba7dd71153 Merge pull request #193 from berkeleycole/master
Fix for wording issue #192
2019-10-15 12:48:51 -07:00
alyssamhope
a470d87e34 Update src/what-is-webassembly.md
Co-Authored-By: Nick Fitzgerald <fitzgen@gmail.com>
2019-10-15 11:54:08 -07:00
alyssamhope
f6c24e49ea Issue #192 - Tiny Wording change 2019-10-15 09:59:06 -07:00
alyssamhope
675bae7ffb Merge pull request #1 from berkeleycole/berkeleycole-wording-change
Tiny wording change
2019-10-15 09:45:16 -07:00
alyssamhope
367a5149ff Tiny wording change
The previous sentence had a slight wording issue, it was halfway between 

"...curious about what a `wasm` file looks like... "
and 
"...curious about how a `wasm` file looks ... "
2019-10-15 09:45:02 -07:00
Nick Fitzgerald
7b7da67eab Merge pull request #190 from sickwiz/new-branch
updated README.md and CONTRIBUTING.md
2019-10-02 12:37:23 -07:00
Aamir Ahmad
7864b185ec rectified double comma in README.md 2019-10-03 00:42:27 +05:30
Aamir Ahmad
8d712ef31a updated README.md and CONTRIBUTING.md 2019-10-02 18:57:55 +05:30
Nick Fitzgerald
0689e8d240 Merge pull request #185 from OmarShehata/patch-1
Update link & name for interface types proposal
2019-08-26 10:50:18 -07:00
Omar Shehata
a3a0b25492 Update link & name for interface types proposal 2019-08-22 19:31:53 -04:00
Nick Fitzgerald
0cef4e25c5 Merge pull request #179 from aaronabramov/patch-1
rename `init()` to `init_panic_hook()`
2019-07-24 10:57:13 -07:00
Aaron Abramov
04465996b8 rename init() to init_panic_hook()
if this function is named `init` it will conflict with `init` function in the code generated by `wasm-build --target web`

it would produce code like:
```js
/**
*/
export function init() {
    wasm.init();
}
// ...
function init(module) {
    if (typeof module === 'undefined') {
        module = import.meta.url.replace(/\.js$/, '_bg.wasm');
// ...
```

and parsing will fail with:
```

SyntaxError: unknown: Identifier 'init' has already been declared (136:9)

  134 | }
  135 |
> 136 | function init(module) {
      |          ^
  137 |     if (typeof module === 'undefined') {
  138 |         module = import.meta.url.replace(/\.js$/, '_bg.wasm');
  139 |     }
```
2019-07-15 21:01:02 -04:00
Nick Fitzgerald
7c098298a9 Merge pull request #176 from jackharrhy/rawgit-to-github-pages
Changed rawgit site to Github pages URL
2019-07-01 10:17:25 -07:00
Jack Arthur Harrhy
616a652208 Changed rawgit site to Github pages URL 2019-06-28 18:03:16 -02:30
Nick Fitzgerald
7af6c96fe3 Merge pull request #175 from skierpage/patch-1
you're typo
2019-06-06 17:35:50 +02:00
skierpage
91618f5c81 you're typo
"If you're library functions are generic": not a contraction of "you are", just the possessive "your".
2019-06-05 17:17:36 -07:00
Nick Fitzgerald
47b5ae1855 Merge pull request #171 from muxator/patch-1
hello world: reinstall deps before npm run install
2019-06-03 11:19:17 -07:00
Alex Crichton
6be376855c Merge pull request #172 from Ephemera/patch-1
testing: fix typo
2019-05-29 08:47:37 -05:00
GyuYong Jung
6cba16afea testing: fix typo 2019-05-29 22:12:43 +09:00
muxator
c25dba730e hello world: reinstall deps before npm run install
Without this pass, the subsequent npm run start would fail with:

```
ERROR in ./index.js
Module not found: Error: Can't resolve 'wasm-game-of-life' in '<basedir>/wasm-game-of-life/www'
 @ ./index.js 1:0-42 3:0-10
 @ ./bootstrap.js
```
2019-05-24 23:00:56 +00:00
Nick Fitzgerald
d40367cb9b Merge pull request #157 from rustwasm/local-file-deps
Use local file dependencies instead of npm link
2019-05-23 14:57:48 -07:00
Nick Fitzgerald
44b348d5a9 Add standard WG header to README 2019-05-23 14:52:47 -07:00
Nick Fitzgerald
0fbd759153 Merge pull request #170 from noelyoo/fix-typo
docs: fix typo in deploying-to-production.md
2019-05-20 11:05:53 -07:00
noelyoo
62749651d5 docs: fix typo in deploying-to-production.md 2019-05-18 20:08:23 +09:00
Alex Crichton
47d419fe20 Merge pull request #167 from Kinrany/patch-1
Fix a typo in rules.md
2019-05-13 08:39:31 -05:00
Kinrany
1a5deebe6e Fix a typo in rules.md
`<summar>` -> `<summary>`
2019-05-11 17:14:58 +03:00
Alex Crichton
3a9c4aeb70 Update link to WebIDL bindings
Closes rustwasm/rustwasm.github.io#162
2019-04-11 07:08:47 -07:00
Nick Fitzgerald
9575cb501e Merge pull request #161 from frewsxcv/patch-1
Update link to point to moved repo
2019-04-03 16:09:32 -07:00