-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: faute de frappe corrigée pour faire fonctionner GP avec Leaflet et Angular #382
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bonjour,
merci pour votre PR.
Quelques changements pour que celle-ci fonctionne aussi en mode package npm. En effet, aucune release npm n'a été publiée pour le package replace-bundle-webpack-plugin.
geoportal-extensions/package.json
Line 123 in 77c1c97
"replace-bundle-webpack-plugin": "^1.0.0", |
Remplacer par le fork corrigé de l'erreur de typo :
"replace-bundle-webpack-plugin-edited": "^1.0.0",
var ReplaceWebpackPlugin = require("replace-bundle-webpack-plugin"); |
var ReplaceWebpackPlugin = require("replace-bundle-webpack-plugin"); |
var ReplaceWebpackPlugin = require("replace-bundle-webpack-plugin"); |
Remplacer par :
var ReplaceWebpackPlugin = require("replace-bundle-webpack-plugin-edited");
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On peut aussi héberger en local le plugin comme pour les plugins JsDocWebPackPlugin et HandlebarsPlugin (cf. ./build/scripts/webpackPlugins) afin d'éviter d'utiliser un fork. On aurait ainsi la maintenance.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK pour moi, merci
Pull request checklist
Verifiez que votre Pull Request remplit les conditions suivantes :
npm run build
) a été lancé localement et s'est correctement déroulénpm run samples
) ont été testés et validés localementnpm run test
) sont passés localementDe plus, l'application
github:geoportal-third-party-integration-master/simple-map-leaflet-angular
qui ne buildait pas build correctement maintenant.Type de Pull request
Quel type de changement cette Pull Request introduit-elle :
Quel est le comportement actuel (avant PR) :
geoportal-extensions-leaflet n'est pasz utilisable dans un context Leaflet + Angular, car le fichier Styles.js importe des CSS. C'est à cause de la faute de frappe décrite dans ISSUE #381 qui est corrigée par cette PR.
Numéro du ticket : #381
Quel est le nouveau comportement :
github:geoportal-third-party-integration-master/simple-map-leaflet-angular
ne fonctionnait pas : c'est maintenant corrigéCette PR introduit-elle des breaking changes ?
Autres informations