Skip to content

Commit

Permalink
Update package.js
Browse files Browse the repository at this point in the history
Upgrade `semver` to the latest version
  • Loading branch information
9Morello authored Dec 6, 2024
1 parent 8b1234f commit 5452584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* global Package:readonly, Npm:readonly */
Package.describe({
name: 'tmeasday:check-npm-versions',
version: '2.0.0',
version: '2.0.1',
summary: 'Check that required npm packages are installed at the app level',
git: 'https://github.com/tmeasday/check-npm-versions.git',
documentation: 'README.md',
});

Npm.depends({ semver: '6.3.0' }); // 7.x versions are incompatible with Internet Explorer
Npm.depends({ semver: '7.6.3' });

Package.onUse(function (api) {
api.versionsFrom(['2.8.0', '3.0.1']);
Expand Down

0 comments on commit 5452584

Please sign in to comment.