Skip to content

Commit

Permalink
Dependencies are pinned to more specific versions (#92)
Browse files Browse the repository at this point in the history
NPM dependency versions are made more specific to avoid minor release updates that break functionality.
  • Loading branch information
michaelpnelson committed Mar 10, 2022
1 parent d03adb3 commit e446dcb
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 160 deletions.
211 changes: 75 additions & 136 deletions package-lock.json

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

46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,34 @@
},
"dependencies": {
"@bcgov/smk": ">=1.0.7",
"@tmcw/togeojson": "^4.1.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"csv-parse": "^4.12.0",
"express": "^4.17.1",
"fgdb": "^1.0.0",
"figlet": "^1.5.0",
"@tmcw/togeojson": "~4.5.0",
"chalk": "~4.1.0",
"cors": "~2.8.5",
"csv-parse": "~4.16.0",
"express": "~4.17.3",
"fgdb": "~1.0.0",
"figlet": "~1.5.0",
"glob": "7.1.2",
"inquirer": "^7.3.3",
"lodash": "^4.17.19",
"inquirer": "~7.3.3",
"lodash": "~4.17.21",
"material-design-icons-iconfont": "6.1.1",
"minimist": "^1.2.5",
"multer": "^1.4.2",
"node-fetch": "^3.2.0",
"open": "^7.1.0",
"proj4": "^2.6.2",
"semver": "^7.3.2",
"shapefile": "^0.6.6",
"shelljs": "^0.8.4",
"touch": "^3.1.0",
"unzipper": "^0.10.11",
"xml2js": "^0.4.23",
"xmldom": "^0.6.0"
"minimist": "~1.2.5",
"multer": "~1.4.4",
"node-fetch": "~2.6.7",
"open": "~7.4.0",
"proj4": "~2.7.5",
"semver": "~7.3.5",
"shapefile": "~0.6.6",
"shelljs": "~0.8.5",
"touch": "~3.1.0",
"unzipper": "~0.10.11",
"xml2js": "~0.4.23",
"xmldom": "~0.6.0"
},
"devDependencies": {
"connect-livereload": "^0.6.0",
"connect-livereload": "~0.6.0",
"grunt": "1.4.1",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-connect": "~1.0.0",
"grunt-contrib-watch": "1.1.0",
"load-grunt-tasks": "4.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion smk-edit/controllers/catalogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const layer = require( './layer.js' )
const path = require( 'path' )
const fs = require( 'fs' )
const multer = require( 'multer' )
const fetch = import( 'node-fetch' )
const fetch = require( 'node-fetch' )
// const sizeOf = require( 'image-size' )

// move these into an external config
Expand Down

0 comments on commit e446dcb

Please sign in to comment.