Skip to content

Commit

Permalink
fix: restore installability of package (#983)
Browse files Browse the repository at this point in the history
Due to several things, the yarn.lock and package.json
were out of sync, so that vue-loader was not installed
anymore by yarn 1 and the build failed consequently.

This change restores the state of the package.json
before bumping Yarn to 4, and it additionally removes
"@webpack-cli/generators" which seems to be a remnant of
bootstrapping the project build.

Also, this change bumps several dependencies to their latest
resolvable minor versions as i deleted yarn.lock before
running `yarn install` to have a clean start, again.

Lastly, this change fixes string-width and wrap-ansi at specific
resolutions, to overcome the "string-width-error" once more.
  • Loading branch information
spiess-demos authored and salisdemos committed Dec 10, 2024
1 parent b634a7f commit e4d8117
Show file tree
Hide file tree
Showing 3 changed files with 392 additions and 3,874 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,21 @@
Since v0.0.10, this Changelog is formatted according to the [Common Changelog][common-changelog] recommendations.

## UNRELEASED

### Fixed

- ([#983](https://github.com/demos-europe/demosplan-ui/pull/983)) Fix issue where the project is not correctly installable. ([@spiess-demos](https://github.com/spiess-demos))

## v0.3.28 - 2024-08-08

### Added
- ([#976](https://github.com/demos-europe/demosplan-ui/pull/976)) DpIcon: Add new icons check-square and square ([@gruenbergerdemos](https://github.com/gruenbergerdemos))

## v0.3.27 - 2024-07-30

### Fixed

- ([#967](https://github.com/demos-europe/demosplan-ui/pull/967)) Roleback Yarn 4. It leads to conflicts with prosemirror ([@salisdemos](https://github.com/salisdemos))
- ([#967](https://github.com/demos-europe/demosplan-ui/pull/967)) Rollback Yarn 4. It leads to conflicts with prosemirror ([@salisdemos](https://github.com/salisdemos))

## v0.3.25 - 2024-07-30

Expand Down
21 changes: 5 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,35 +67,23 @@
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/addon-styling-webpack": "^0.0.6",
"@storybook/blocks": "^7.0.27",
"@storybook/components": "^7.0.27",
"@storybook/core-events": "^7.0.27",
"@storybook/preview-api": "^7.0.27",
"@storybook/theming": "^7.0.27",
"@storybook/types": "^7.0.27",
"@storybook/vue": "7.6.17",
"@storybook/vue-webpack5": "7.6.17",
"@storybook/vue3": "^7.0.27",
"@types/eslint": "^9",
"@types/jest": "^29.5.1",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^1.3.5",
"@vue/vue2-jest": "^29.2.4",
"@webpack-cli/generators": "^3.0.0",
"autoprefixer": "^10.4.14",
"babel-core": "^7.0.0-bridge.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"css-loader": "^7.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"glob": "^10.3.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.3.1",
Expand All @@ -107,12 +95,10 @@
"postcss": "^8.4.26",
"postcss-loader": "^8.0.0",
"prop-types": "^15.8.1",
"prosemirror-model": "^1.18.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "7.6.17",
"storybook-addon-vue-slots": "^0.9.21",
"string-width": "7.2.0",
"style-dictionary": "^3.9.2",
"style-loader": "^4.0.0",
"tailwindcss": "^3.2.1",
Expand Down Expand Up @@ -179,5 +165,8 @@
"test": "jest",
"watch": "webpack --watch"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
"resolutions": {
"string-width": "^4.2.0",
"wrap-ansi": "^7.0.0"
}
}
Loading

0 comments on commit e4d8117

Please sign in to comment.