Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

[Security] Bump handlebars from 4.0.11 to 4.7.7 #38

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
4ede289
add emscripten support
nokotan Mar 9, 2020
009cd28
change c/c++ backend service from clang to emscripten
nokotan Mar 9, 2020
be22ff3
make clangService.spec.ts dependent from createCompilierService
nokotan Mar 9, 2020
9cb1e74
Merge branch 'add-emscripten-backend' into develop
nokotan Mar 9, 2020
1a7f47b
update configurations of emscripten backend
nokotan Mar 9, 2020
b73e665
Merge branch 'add-emscripten-backend' into develop
nokotan Mar 9, 2020
7bfedbc
change webpack publicPath ./dist/ to dist/ and rebuild
Mar 8, 2020
a269217
change templates path /dist/ to dist/
Mar 8, 2020
587f7d8
update tests for updating templates path
nokotan Mar 9, 2020
f7f85c0
Merge branch 'support-nonroot-deployment-path' into develop
nokotan Mar 9, 2020
450ded4
add dxlib template
Mar 8, 2020
1f4b19c
remove rust templates
Mar 8, 2020
0a85f5a
bugfix for cannot focus on canvas
nokotan Mar 9, 2020
2a1dd71
Merge branch 'template-dxlib' into develop
nokotan Mar 9, 2020
9fb408c
patch for treat .wasm file in template as binary
Mar 8, 2020
e1eb777
Merge branch 'support-wasm-in-template-files' into develop
nokotan Mar 9, 2020
af5bd24
workaround for template path problem on windows
Mar 8, 2020
107a914
Merge branch 'update-template-path-for-windows' into develop
nokotan Mar 9, 2020
862ad72
[Security] Bump webpack-dev-server from 3.1.10 to 3.1.11
dependabot-preview[bot] Mar 9, 2020
ee1e123
Merge pull request #13 from nokotan/dependabot/npm_and_yarn/webpack-d…
nokotan Mar 9, 2020
5ec1a12
add warning & error support
nokotan Apr 16, 2020
2780ec2
delete wat template
nokotan Apr 16, 2020
b0ced36
add sdl2 template
nokotan Apr 16, 2020
1cd7ec9
modify dxlib template for readme.md & build config
nokotan Apr 16, 2020
cc51381
Merge branch 'emscripten-problem-support' into work
nokotan Apr 16, 2020
577d3a2
delete empty_c project template
nokotan Apr 29, 2020
16fcfdb
binary file support for .ttf, .data, image files, audio files
nokotan Apr 30, 2020
e9b254d
OpenSiv3D template support
nokotan Apr 30, 2020
dbac3a8
changes for DxLib template to support .pch
nokotan Apr 30, 2020
a064e1b
Change e2e test target to Hello World C template
nokotan Apr 30, 2020
2ec442e
update main.c return value in hello world c template
nokotan Apr 30, 2020
b45a00f
load Siv3D.wasm dynamically
nokotan Sep 21, 2020
3c0c144
update CNAME
nokotan Sep 21, 2020
8e4058b
update siv3d template
nokotan Sep 21, 2020
8d4615f
skip decode operation to text file
nokotan Sep 22, 2020
a125531
edit test corresponding previous change
nokotan Sep 22, 2020
e0d899f
Responding compiler output format change
nokotan Sep 23, 2020
6de55ed
Update test
nokotan Sep 23, 2020
892cdd7
Update templates
nokotan Sep 23, 2020
bdad67b
Update sdl2 templates
nokotan Sep 23, 2020
e7bc31c
Update config.json
nokotan Dec 16, 2020
5fe5b3b
Update config.json
nokotan Dec 16, 2020
743e84b
Update config.spec.ts
nokotan Dec 16, 2020
2d92212
Update OpenSiv3D Template
nokotan Feb 21, 2021
3e52440
Update DxLib Template
nokotan Feb 21, 2021
a57a5f7
[Security] Bump handlebars from 4.0.11 to 4.7.7
dependabot-preview[bot] Feb 22, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CNAME
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
webassembly.studio
www.webassembly.studio
webassembly-studio.kamenokosoft.com
4 changes: 3 additions & 1 deletion bin/bundle-templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function bundleTemplate(templateName) {
let base = path.join(templatesDir, templateName);
let files = [];
walk(base, (path) => {
let name = path.substring(base.length + 1);
let name = path.substring(base.length + 1).replace("\\", "/");
if (name == "package.json") {
const pkg = JSON.parse(fs.readFileSync(path, "utf8"));
templateName = pkg.name;
Expand All @@ -56,8 +56,10 @@ function bundleTemplate(templateName) {
icon = pkg.wasmStudio.icon || icon;
}
}
const extensionsOfBinaryFile = [ "wasm", "data" ];
files.push({
name,
type: extensionsOfBinaryFile.includes(name.split(".").pop()) ? "binary" : "text"
});
})
return {
Expand Down
5 changes: 3 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"clang": "//webassembly-studio-clang.herokuapp.com/build",
"rustc": "//webassembly-studio-rust.herokuapp.com/rustc",
"cargo": "//webassembly-studio-rust.herokuapp.com/cargo",
"emscripten": "//emscripten-compiler-2-0-4.herokuapp.com/build",
"templates": {
"default": "/dist/templates/index.js",
"arc": "/dist/arc-templates/index.js"
"default": "dist/templates/index.js",
"arc": "dist/arc-templates/index.js"
},
"sentryDNS": "https://[email protected]/1229949"
}
Loading