-
-
Save daominhsangvn/515b2be1d1f2382c23da0a201fc15635 to your computer and use it in GitHub Desktop.
make your package.json dependencies be the exact version that's in your node_modules currently
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* jshint node:true */ | |
/* eslint-env node */ | |
/* | |
* This will look at the current version of all of your dependencies and update your package.json | |
* with the specific version that you currently have in node_modules. This will save you from the | |
* sadness that is: DEPENDENCY MANAGEMENT | |
* | |
* Place this file in a folder that's a a sibling to your package.json and node_modules | |
* Then simply run: node scripts/package-strict | |
* (replace "scripts" with the name of the folder you placed this stuff in) | |
* | |
* When you're ready to update dependencies, I recommend https://github.com/bahmutov/next-update | |
*/ | |
var fs = require('fs'); | |
var path = require('path'); | |
var packageJson = require('../package.json'); | |
strictifyDeps('dependencies'); | |
strictifyDeps('devDependencies'); | |
console.log('done!'); | |
function strictifyDeps(depsProperty) { | |
var deps = Object.keys(packageJson[depsProperty]); | |
deps.forEach(function(dep) { | |
var depPackageJson = require('../node_modules/' + dep + '/package.json'); | |
packageJson[depsProperty][dep] = depPackageJson.version; | |
}); | |
fs.writeFileSync(path.resolve(__dirname, '../package.json'), JSON.stringify(packageJson, null, 2)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment