Skip to content

Commit 03b5116

Browse files
committed
wip deploy
1 parent b8562b7 commit 03b5116

File tree

7 files changed

+174
-140
lines changed

7 files changed

+174
-140
lines changed

.versions

-30
This file was deleted.

README.md

+132-78
Large diffs are not rendered by default.

meteor-legacy-coverage/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# meteor-packages-coverage
22

3-
Fork of meteor-coverage that uses the [istanbuljs](https://github.com/istanbuljs/istanbuljs) package for code coverage.
3+
Fork of meteor-coverage that uses the [istanbuljs](https://github.com/istanbuljs/istanbuljs) package for code coverage.
44

5-
We use this package for meteor packages instrumentation because we can't use the babel plugin istanbul while testing a meteor package.
5+
We use this package for meteor packages instrumentation because we can't use the babel plugin istanbul while testing a
6+
meteor package.

meteor-legacy-coverage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meteor-legacy-coverage",
3-
"version": "0.2.0",
3+
"version": "0.4.0",
44
"description": "Instrument packages files",
55
"main": "server/index.js",
66
"dependencies": {

package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'lmieulet:meteor-coverage',
3-
version: '4.3.0',
3+
version: '5.0.0-rc.0',
44
summary: 'Server and client coverage for Meteor',
55
git: 'https://github.com/serut/meteor-coverage',
66
documentation: 'README.md',
@@ -48,7 +48,7 @@ Package.onTest(function (api) {
4848
});
4949
api.use('ecmascript');
5050
api.use('lmieulet:[email protected]', 'server');
51-
api.use(['lmieulet:meteor-coverage@4.3.0']);
51+
api.use(['lmieulet:meteor-coverage@5.0.0-rc.0']);
5252
api.use(['meteortesting:[email protected]']);
5353
// New meteor 12/2018 unknown issue
5454
api.addFiles(['client/methods.e2e.tests.js', 'client/methods.unit.tests.js', 'client/client.instrumentation.tests.js'], 'client');

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meteor-coverage",
3-
"version": "5.0.0",
3+
"version": "5.0.0-rc.0",
44
"description": "A meteor package that allows you to get the statement, line, function and branch coverage of Meteor project. This package uses the [istanbuljs](https://github.com/istanbuljs/istanbuljs) packages for coverage report. It's a debug only package, so it does not affect your production build.",
55
"main": "server/index.js",
66
"dependencies": {
@@ -42,5 +42,9 @@
4242
"bugs": {
4343
"url": "https://github.com/serut/meteor-coverage/issues"
4444
},
45-
"homepage": "https://github.com/serut/meteor-coverage#readme"
45+
"homepage": "https://github.com/serut/meteor-coverage#readme",
46+
"volta": {
47+
"node": "22.7.0",
48+
"yarn": "3.7.0"
49+
}
4650
}

0 commit comments

Comments
 (0)