diff --git a/packages/logging/.npm/package/.gitignore b/packages/logging/.npm/package/.gitignore deleted file mode 100644 index 3c3629e647..0000000000 --- a/packages/logging/.npm/package/.gitignore +++ /dev/null @@ -1 +0,0 @@ -node_modules diff --git a/packages/logging/.npm/package/README b/packages/logging/.npm/package/README deleted file mode 100644 index 3d492553a4..0000000000 --- a/packages/logging/.npm/package/README +++ /dev/null @@ -1,7 +0,0 @@ -This directory and the files immediately inside it are automatically generated -when you change this package's NPM dependencies. Commit the files in this -directory (npm-shrinkwrap.json, .gitignore, and this README) to source control -so that others run the same versions of sub-dependencies. - -You should NOT check in the node_modules directory that Meteor automatically -creates; if you are using git, the .gitignore file tells git to ignore it. diff --git a/packages/logging/chalk b/packages/logging/chalk new file mode 120000 index 0000000000..38c247854d --- /dev/null +++ b/packages/logging/chalk @@ -0,0 +1 @@ +node_modules/chalk/ \ No newline at end of file diff --git a/packages/logging/.npm/package/npm-shrinkwrap.json b/packages/logging/package-lock.json similarity index 65% rename from packages/logging/.npm/package/npm-shrinkwrap.json rename to packages/logging/package-lock.json index 5a3f61033d..3ea64db96f 100644 --- a/packages/logging/.npm/package/npm-shrinkwrap.json +++ b/packages/logging/package-lock.json @@ -1,20 +1,33 @@ { + "name": "logging", + "version": "1.0.0", "lockfileVersion": 1, + "requires": true, "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } }, "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==" + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } }, "color-name": { "version": "1.1.4", @@ -29,7 +42,10 @@ "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } } } } diff --git a/packages/logging/package.js b/packages/logging/package.js index 9c2d51112c..a4510f7382 100644 --- a/packages/logging/package.js +++ b/packages/logging/package.js @@ -3,9 +3,6 @@ Package.describe({ version: '1.3.0-rc240.5' }); -Npm.depends({ - 'chalk': '4.1.1' -}); Npm.strip({ 'es5-ext': ['test/'] diff --git a/packages/logging/package.json b/packages/logging/package.json new file mode 100644 index 0000000000..7d3275d1f0 --- /dev/null +++ b/packages/logging/package.json @@ -0,0 +1,8 @@ +{ + "name": "logging", + "version": "1.0.0", + "description": "[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/logging) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/logging) ***", + "dependencies": { + "chalk": "^4.1.2" + } +}