Skip to content

Commit

Permalink
update meta package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lowzonenose committed Oct 17, 2024
1 parent 2f4e653 commit 52b7e0a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 11 deletions.
22 changes: 11 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,42 +24,42 @@ Voici quelques étapes pas à pas :
* Dans votre répertoire local, ajoutez le dépôt principal de cartes.gouv.fr-entree-carto comme source `upstream` (en utilisant l'URL HTTPS)
* Vous pouvez vérifier l'état de vos remotes avec la commande `git remote -v` et vous devriez avoir :

```
origin [email protected]:votre_compte_github/cartes.gouv.fr-entree-carto.git (fetch)
origin [email protected]:votre_compte_github/cartes.gouv.fr-entree-carto.git (push)
upstream https://github.com/IGNF/cartes.gouv.fr-entree-carto.git (fetch)
upstream https://github.com/IGNF/cartes.gouv.fr-entree-carto.git (push)
```bash
origin [email protected]:votre_compte_github/cartes.gouv.fr-entree-carto.git (fetch)
origin [email protected]:votre_compte_github/cartes.gouv.fr-entree-carto.git (push)
upstream https://github.com/IGNF/cartes.gouv.fr-entree-carto.git (fetch)
upstream https://github.com/IGNF/cartes.gouv.fr-entree-carto.git (push)
```

> :exclamation: Il est important que `origin` pointe sur votre fork du dépôt et pas sur le dépôt principal.

* Mettez à jour avant de créer une branche

```
```bash
git checkout main
```

* Téléchargez les mises à jour de toutes les branches `upstream`

```
```bash
git fetch upstream
```

* Mettez à jour votre branche `main` locale pour qu'elle soit au même niveau que la branche `main` du dépôt principal
```
```bash
git rebase upstream/main
```
Si la commande `rebase` vous envoie un message d'erreur parce que vous avez des changements locaux non commités, placez les de côté dans le "stash"

```
```bash
git stash
```

Maintenant vous pouvez utiliser rebase puis réappliquer vos changements

```
```bash
git rebase upstream/main
git stash apply
```
Expand All @@ -68,7 +68,7 @@ Créez une nouvelle branche avec l'outil dont vous avez l'habitude sur votre dé

Ajoutez, commitez et pushez vos changements dans une nouvelle branche (ici `new-feature`) sur votre dépôt.

```
```bash
git push origin new-feature
```

Expand Down
25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@
"name": "cartes.gouv.fr-entree-carto",
"type": "module",
"version": "1.0.0",
"description": "Interface cartographique permettant de visualiser et manipuler les données de la Géoplateforme",
"date": "15/10/2024",
"directories": {},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/IGNF/cartes.gouv.fr-entree-carto.git"
},
"author": "IGNF",
"keywords": [
"geoportail",
"geoplateforme",
"javascript",
"openlayers",
"vue3",
"dsfr",
"cartes.gouv.fr"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/IGNF/cartes.gouv.fr-entree-carto/issues"
},
"homepage": "https://github.com/IGNF/cartes.gouv.fr-entree-carto#readme",
"scripts": {
"clean:dist": "rimraf dist",
"build-only": "vite build",
Expand Down

0 comments on commit 52b7e0a

Please sign in to comment.