Skip to content

Commit 0341b50

Browse files
authored
Merge pull request #10 from rajeevkumar-nr/NR-320035-updating-shaka-tracker
NR-320035- Updating Video-Shaka-Js
2 parents a00b9d6 + dbf3c29 commit 0341b50

File tree

13 files changed

+8042
-4315
lines changed

13 files changed

+8042
-4315
lines changed

.babelrc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"presets": ["env"]
3-
}
2+
"presets": [
3+
"@babel/preset-env"
4+
],
5+
"plugins": ["@babel/plugin-transform-modules-commonjs"]
6+
}

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# CHANGELOG
22

3-
## Unreleased
3+
## [0.3.0] - 2024/10/07
4+
### Update
5+
- Upgraded Shaka Player version `4.11.2`.
46

57
## [0.2.0] - 2017/11/28
68
### Lib

babel.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
presets: ["@babel/preset-env"],
3+
plugins: ["@babel/plugin-transform-modules-commonjs"],
4+
};

jest.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
testEnvironment: "node",
3+
moduleFileExtensions: ["js", "jsx"],
4+
transform: {
5+
"^.+\\.jsx?$": "babel-jest",
6+
},
7+
transformIgnorePatterns: ["node_modules/(?!@shotgunjed)/"],
8+
9+
testMatch: ["**/__tests__/**/*.js?(x)", "**/?(*.)+(spec|test).js?(x)"],
10+
};

0 commit comments

Comments
 (0)