Skip to content

Commit

Permalink
package.json: add missing dependencies
Browse files Browse the repository at this point in the history
We make direct use of both 'glob' and 'lodash' from our build system,
but we don't declare a dependency on them.  We haven't noticed this
problem because we've been getting them "for free" from other packages
that depend on them.

Make the dependency explicit.

With this change, it's now possible to run

  deno run --allow-all build.js

Changed by Martin Pitt: Also explicitly pin down
the stylelint-config-recommended-scss version. Newer versions don't
work together with our current stylelint version.
  • Loading branch information
allisonkarlitskaya authored and martinpitt committed Jul 10, 2024
1 parent cf1cca4 commit 319e2d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,16 @@
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"gettext-parser": "8.0.0",
"glob": "7.2.3",
"htmlparser": "1.7.7",
"jed": "1.1.1",
"lodash": "4.17.21",
"qunit": "2.21.0",
"qunit-tap": "1.5.1",
"sass": "1.77.6",
"sizzle": "2.3.10",
"stylelint": "16.6.1",
"stylelint-config-recommended-scss": "14.0.0",
"stylelint-config-standard": "36.0.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-formatter-pretty": "4.0.0",
Expand Down

0 comments on commit 319e2d4

Please sign in to comment.