Overview
| Comment: | [njs] Add files for modules |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | njs | nodejs |
| Files: | files | file ages | folders |
| SHA3-256: |
5b89e2f4fed82955ec6aaa844c6be7cd |
| User & Date: | IllusionPerdu on 2018-10-15 15:56:22 |
| Original Comment: | [js] Add files for modules |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-10-15
| ||
| 20:35 | [njs] Fix some spell/typo check-in: 36bf480e0d user: IllusionPerdu tags: njs, nodejs | |
| 15:56 | [njs] Add files for modules check-in: 5b89e2f4fe user: IllusionPerdu tags: njs, nodejs | |
| 15:54 | [njs] Change directory for modules check-in: 6076fe388a user: IllusionPerdu tags: njs, nodejs | |
Changes
Added gc_lang/fr/nodejs/cli/package.json version [5d07f6ca63].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
{
"name": "grammalecte-cli",
"version": "1.0.0",
"description": "Grammalecte command line interface",
"keywords": [
"cli",
"french",
"grammar",
"proofreader"
],
"author": "Sébastien GRAVIER, Olivier R.",
"license": "GPL-3.0-or-later",
"homepage": "https://www.dicollecte.org/",
"bin": {
"gramma-cli": "bin/gramma-cli.js"
},
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"gramma-cli": "node bin/gramma-cli.js"
},
"dependencies": {
"grammalecte": "~1.0.0"
},
"files": [
"bin",
"lib",
"data",
"readme.md"
]
}
|
Added gc_lang/fr/nodejs/core/package.json version [f9b31c7c8a].
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
{
"name": "grammalecte",
"version": "1.0.0",
"description": "Grammalecte is a grammar proofreader",
"keywords": [
"french",
"grammar",
"proofreader"
],
"author": "Olivier R.",
"license": "GPL-3.0-or-later",
"homepage": "https://www.dicollecte.org/",
"main": "api.js",
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}
|
Added gc_lang/fr/nodejs/core/readme.md version [00d59dd4e1].
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Grammalecte pour NodeJS ## Informations Grammalecte est un correcteur grammatical open source dédié à la langue française. Site Internet : https://www.dicollecte.org/ ## Installation Dans votre répertoire de dévellepement : ``` npm install grammalecte ``` |
Added gc_lang/fr/nodejs/note.md version [38df099e80].
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Note pour le dévellepement pour NodeJS ## Commande pour définir l'utilisation d'un packetage local ``` cd core npm link cd .. cd cli npm link grammalecte npm install cd .. ``` ## Commande désintaller le packetage local et son utilisation ``` npm rm grammalecte --global cd cli npm unlink grammalecte npm rm grammalecte-cli --global cd .. ``` |