Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration/3.0 #46

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
- run: |
npm ci
npm run lint
npm run pre-commit
npm run lint:ts
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
.npm
.idea/
.npm/
__types/
2 changes: 1 addition & 1 deletion .npm/package/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 17 additions & 16 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
babel-compiler@7.10.5
babel-runtime@1.5.1
dynamic-import@0.7.3
ecmascript-runtime@0.8.1
ecmascript-runtime-client@0.12.1
ecmascript-runtime-server@0.11.0
fetch@0.1.4
inter-process-messaging@0.1.1
meteor@1.11.5
modern-browsers@0.1.10
modules@0.20.0
modules-runtime@0.13.1
promise@0.12.2
react-fast-refresh@0.2.8
tmeasday:check-npm-versions@1.0.3
typescript@4.9.5
babel-compiler@7.11.0
babel-runtime@1.5.2
core-runtime@1.0.0
dynamic-import@0.7.4
ecmascript-runtime@0.8.2
ecmascript-runtime-client@0.12.2
ecmascript-runtime-server@0.11.1
fetch@0.1.5
inter-process-messaging@0.1.2
meteor@2.0.0
modern-browsers@0.1.11
modules@0.20.1
modules-runtime@0.13.2
promise@1.0.0
react-fast-refresh@0.2.9
tmeasday:check-npm-versions@2.0.0-rc300.1
typescript@5.4.3
zodern:types@1.0.13
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# check-npm-versions

[![Test suite](https://github.com/Meteor-Community-Packages/check-npm-versions/actions/workflows/testsuite.yml/badge.svg)](https://github.com/Meteor-Community-Packages/check-npm-versions/actions/workflows/testsuite.yml)
[![CodeQL](https://github.com/Meteor-Community-Packages/check-npm-versions/actions/workflows/codeql.yml/badge.svg)](https://github.com/Meteor-Community-Packages/check-npm-versions/actions/workflows/codeql.yml)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)

Enforces "peer" npm dependencies in Meteor packages.

Use this package if you are writing an Meteor package that depends on a given npm package is installed at the app level of projects you are installed in.
Expand Down
17 changes: 17 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// @ts-check

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

// see https://typescript-eslint.io/getting-started

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-var-requires': 'off',
}
}
);
Loading
Loading