Skip to content

Commit 94f3f92

Browse files
committed
chore: update devDependencies and address security vulnerabilities
- Upgrade gulp to v5 and update various gulp plugins (bump, git, mocha, etc.). - Update mocha and karma to latest stable versions. - Resolve ESLint peer dependency conflict by aligning eslint-plugin-angular. - Fix linting error in examples/app.js (missing curly braces).
1 parent 51001d4 commit 94f3f92

3 files changed

Lines changed: 2356 additions & 4630 deletions

File tree

examples/app.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222

2323
app.filter('slug', () => {
2424
return (input) => {
25-
if (!input) return '';
25+
if (!input) {
26+
return '';
27+
}
2628
return input.toLowerCase().replace(/ /g, '-');
2729
};
2830
});

0 commit comments

Comments
 (0)