Read the statement by Michael Teeuw here.
MMM-Jast 2.9.2 doesn't install on newest MM version 2.26
-
@soonerdm sadly the --onit=dev STILL CHECKS all the dev dependencies even tho they will not be installed… dumb
so edit that package.json and add a 1 to the key
devdependencies (on phone so check spelling)then it won’t be found during install
lmk. I’ve done this many times.
-
@sdetweil Not sure what you mean by add a 1 to the key.
Here is my package.json devDependancies block"devDependencies": { "@stylistic/eslint-plugin": "^1.5.1", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jest": "^27.6.0", "eslint-plugin-jsdoc": "^46.9.1", "express-basic-auth": "^1.2.1", "husky": "^8.0.3", "jest": "^29.7.0", "jsdom": "^23.0.1", "lint-staged": "^15.2.0", "lodash": "^4.17.21", "playwright": "^1.40.1", "prettier": "^3.1.1", "sinon": "^17.0.1", "stylelint": "^16.1.0", "stylelint-config-standard": "^36.0.0", "stylelint-prettier": "^5.0.0", "suncalc": "^1.9.0" },
-
@soonerdm said in MMM-Jast 2.9.2 doesn't install on newest MM version 2.26:
“devDependencies”: {
JSON is ‘key’/‘value’ pairs
so the ‘key’ here is
"devDependencies"
so make it
"devDependencies1"
watch out for the curved quotes before I used the code block…
-
@sdetweil Gotcha. I thought the key needed a 1. Not that we were renaming it to skip. Thank you. I understand it now.
-
Thank you @KristjanESPERANTO for providing a fix for it.