Skip to content

Commit bb18d30

Browse files
added typescript
1 parent 341c938 commit bb18d30

26 files changed

+46
-6
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/coverage
1010

1111
# production
12-
/build
12+
built
1313

1414
# misc
1515
.DS_Store

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
src="https://cdn.jsdelivr.net/npm/webmidi@next/dist/iife/webmidi.iife.js"
3535
defer
3636
></script>
37-
<script type="module" src="./scripts/jss.js" defer></script>
37+
<script type="module" src="./built/jss.js" defer></script>
3838
<link rel="stylesheet" href="./css/style.min.css" />
3939
<link rel="icon" href="./assets/logo/favicon.ico" />
4040
<link rel="apple-touch-icon" href="./assets/logo/logo192.png" />

package-lock.json

Lines changed: 23 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"version": "0.5.4",
44
"description": "TThe JSS-01 | JavaScript Software Synthesizer is a web app enabling you to make and play music in the browser. It is a software synthesizer implementing a variety of JavaScript frameworks and libraries, such as Tone.js and NexusUI.",
55
"scripts": {
6+
"build": "tsc --build",
7+
"clean": "tsc --build --clean",
68
"sass": "sass --watch sass/style.scss:css/style.min.css --style compressed"
79
},
810
"repository": {
@@ -30,13 +32,21 @@
3032
"sound-engineering"
3133
],
3234
"author": "Michael Kolesidis",
33-
"license": "MIT",
35+
"license": "GPL-3.0-or-later",
3436
"bugs": {
3537
"url": "https://github.com/michaelkolesidis/javascript-software-synthesizer/issues"
3638
},
3739
"homepage": "https://github.com/michaelkolesidis/javascript-software-synthesizer",
3840
"dependencies": {
3941
"node-sass": "^7.0.1",
4042
"sass": "^1.51.0"
43+
},
44+
"main": "index.js",
45+
"directories": {
46+
"doc": "docs",
47+
"test": "test"
48+
},
49+
"devDependencies": {
50+
"typescript": "^4.7.3"
4151
}
4252
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)