Skip to content

Commit cca9b1d

Browse files
committed
update dependencies and update npm hosted version
1 parent aa21e8e commit cca9b1d

File tree

11 files changed

+128
-69
lines changed

11 files changed

+128
-69
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,14 @@ Support tables for audio features, [caniuse: web audio API / audio element / for
7474
## development: build
7575

7676
install the latest nodejs (if you haven't already) [nodejs](https://nodejs.org)
77-
update npm to latest version
77+
78+
install or update to the latest git version [git scm downloads](https://git-scm.com/downloads) (During installation at the step "choosing the default editor used by Git", if like me you are using visual studio code you might want to chose the new option "use visual studio code as Git's default editor") (also if like me you are on windows, at the step "adjusting your PATH environment", ensure the second radio button option is selected "git from the line and also from 3rd-party software" to ensure git is added to the windows PATH, which will allow you to use git with any command line tool like windows powershell for example)
79+
80+
git clone this repository if you haven't already
81+
82+
open your favorite command line tool and go to the root directory of this repository
83+
84+
update npm to latest version
7885

7986
`npm install npm@latest -g`
8087

@@ -101,6 +108,18 @@ to lint the typescript files
101108

102109
`npm run lint`
103110

111+
## npm deployment
112+
113+
login to npmjs.com
114+
115+
`npm login`
116+
117+
before hitting running the command ensure the version of your package in the package.json has been updated
118+
119+
publish a new version on npmjs
120+
121+
`npm publish`
122+
104123
## examples
105124

106125
the best way to get started is to check out the examples folder, start with [simple player example](examples/simple-player)

dist/index.js

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

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

dist/index.umd.js

Lines changed: 22 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.umd.js.map

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

examples/simple-player/client/package-lock.json

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

examples/simple-player/client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-audio-api-player_simple-player_example_client",
3-
"version": "3.0.6",
3+
"version": "4.0.0",
44
"description": "web audio api player simple player example server client",
55
"keywords": [
66
"web",
@@ -34,7 +34,7 @@
3434
},
3535
"dependencies": {},
3636
"devDependencies": {
37-
"tslint": "5.20.0",
38-
"typescript": "3.6.4"
37+
"tslint": "5.20.1",
38+
"typescript": "3.7.2"
3939
}
4040
}

examples/simple-player/server/package-lock.json

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

examples/simple-player/server/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-audio-api-player_simple-player_example_server",
3-
"version": "3.0.6",
3+
"version": "4.0.0",
44
"description": "web audio api player simple player example server",
55
"keywords": [
66
"web",
@@ -38,10 +38,10 @@
3838
"express": "4.17.1"
3939
},
4040
"devDependencies": {
41-
"@types/express": "4.17.1",
42-
"@types/node": "12.7.12",
43-
"tslint": "5.20.0",
44-
"typescript": "3.6.4"
41+
"@types/express": "4.17.2",
42+
"@types/node": "12.12.8",
43+
"tslint": "5.20.1",
44+
"typescript": "3.7.2"
4545
},
4646
"type": "module"
4747
}

0 commit comments

Comments
 (0)