angular-audio-context 33.0.0 → 33.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +20 -22
package/README.md CHANGED
@@ -102,6 +102,8 @@ module was compatible with Angular 1.
102
102
  There is also module called [ngWebAudio](https://github.com/nehz/ngWebAudio) which tries to simplify
103
103
  the buffering and playback of a single audio file by utilizing the Web Audio API.
104
104
 
105
+ [ng-web-apis/audio](https://github.com/ng-web-apis/audio) is a library which allows the Web Audio API to be used from within the templates.
106
+
105
107
  ## Acknowledgement
106
108
 
107
109
  The naming of this module tries to align with the recommendations given in the
package/package.json CHANGED
@@ -10,22 +10,22 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@babel/runtime": "7.18.9",
13
- "standardized-audio-context": "^25.3.32",
13
+ "standardized-audio-context": "^25.3.33",
14
14
  "tslib": "^2.4.0"
15
15
  },
16
16
  "description": "An Angular wrapper for the Web Audio API's AudioContext.",
17
17
  "devDependencies": {
18
- "@angular-devkit/build-angular": "^14.2.4",
18
+ "@angular-devkit/build-angular": "^14.2.6",
19
19
  "@angular-eslint/builder": "^14.1.2",
20
- "@angular/cli": "^14.2.4",
21
- "@angular/common": "^14.2.4",
22
- "@angular/compiler": "^14.2.4",
23
- "@angular/compiler-cli": "^14.2.4",
24
- "@angular/core": "^14.2.4",
25
- "@angular/language-service": "^14.2.4",
26
- "@angular/platform-browser": "^14.2.4",
27
- "@angular/platform-browser-dynamic": "^14.2.4",
28
- "@angular/router": "^14.2.4",
20
+ "@angular/cli": "^14.2.6",
21
+ "@angular/common": "^14.2.7",
22
+ "@angular/compiler": "^14.2.7",
23
+ "@angular/compiler-cli": "^14.2.7",
24
+ "@angular/core": "^14.2.7",
25
+ "@angular/language-service": "^14.2.7",
26
+ "@angular/platform-browser": "^14.2.7",
27
+ "@angular/platform-browser-dynamic": "^14.2.7",
28
+ "@angular/router": "^14.2.7",
29
29
  "@babel/core": "7.18.10",
30
30
  "@babel/plugin-external-helpers": "^7.18.6",
31
31
  "@babel/plugin-transform-runtime": "7.18.10",
@@ -33,11 +33,10 @@
33
33
  "@commitlint/cli": "^17.1.2",
34
34
  "@commitlint/config-angular": "^17.1.0",
35
35
  "@rollup/plugin-babel": "^5.3.1",
36
- "@types/jasmine": "~3.10.6",
37
- "@types/node": "^12.20.55",
36
+ "@types/jasmine": "~4.0.0",
38
37
  "commitizen": "^4.2.5",
39
38
  "cz-conventional-changelog": "^3.3.0",
40
- "eslint": "^8.24.0",
39
+ "eslint": "^8.26.0",
41
40
  "eslint-config-holy-grail": "^53.0.4",
42
41
  "grunt": "^1.5.3",
43
42
  "grunt-cli": "^1.4.3",
@@ -45,14 +44,13 @@
45
44
  "grunt-contrib-copy": "^1.0.0",
46
45
  "grunt-sh": "^0.2.0",
47
46
  "husky": "^8.0.1",
48
- "jasmine-core": "~4.0.1",
49
- "jasmine-spec-reporter": "~5.0.2",
50
- "karma": "~6.3.20",
47
+ "jasmine-core": "~4.3.0",
48
+ "karma": "~6.4.1",
51
49
  "karma-chrome-launcher": "~3.1.1",
52
- "karma-coverage": "~2.1.1",
50
+ "karma-coverage": "~2.2.0",
53
51
  "karma-firefox-launcher": "^2.1.2",
54
- "karma-jasmine": "~4.0.2",
55
- "karma-jasmine-html-reporter": "^1.7.0",
52
+ "karma-jasmine": "~5.1.0",
53
+ "karma-jasmine-html-reporter": "~2.0.0",
56
54
  "karma-safari-launcher": "^1.0.0",
57
55
  "karma-sauce-launcher": "^4.3.6",
58
56
  "load-grunt-config": "^4.0.1",
@@ -61,7 +59,7 @@
61
59
  "rollup": "^2.79.1",
62
60
  "rxjs": "~7.5.7",
63
61
  "tsconfig-holy-grail": "^11.1.36",
64
- "typescript": "~4.6.4",
62
+ "typescript": "~4.7.2",
65
63
  "zone.js": "~0.11.8"
66
64
  },
67
65
  "files": [
@@ -94,5 +92,5 @@
94
92
  "test": "grunt lint && grunt test"
95
93
  },
96
94
  "types": "build/es2019/module.d.ts",
97
- "version": "33.0.0"
95
+ "version": "33.0.1"
98
96
  }