-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from IGN-CNIG/develop
Develop
- Loading branch information
Showing
3,722 changed files
with
39,943 additions
and
109,743 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"custom": { | ||
"titleApp": "API IGN Core", | ||
"titleApp": "API CNIG Core", | ||
"versionApp": "1.0.0" | ||
}, | ||
"opts": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
/** | ||
* Handle the api annotation. | ||
* @param {Object} dictionary The tag dictionary. | ||
*/ | ||
exports.defineTags = function(dictionary) { | ||
dictionary.defineTag('api', { | ||
onTagged: function(doclet, tag) { | ||
doclet.api = true; | ||
} | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"opts": { | ||
"recurse": true, | ||
"template": "config/jsdoc/info" | ||
}, | ||
"tags": { | ||
"allowUnknownTags": true | ||
}, | ||
"source": { | ||
"includePattern": "\\.js$" | ||
}, | ||
"plugins": [ | ||
"jsdoc-plugin-typescript", | ||
"config/jsdoc/info/api-plugin", | ||
"config/jsdoc/info/define-plugin", | ||
"config/jsdoc/info/virtual-plugin" | ||
], | ||
"typescript": { | ||
"moduleRoot": "node_modules/ol" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* @fileoverview This plugin extracts info from boolean defines. This only | ||
* handles boolean defines with the default value in the description. Default | ||
* is assumed to be provided with something like "default is `true`" (case | ||
* insensitive, with or without ticks). | ||
*/ | ||
const DEFAULT_VALUE = /default\s+is\s+`?(true|false)`?/i; | ||
/** | ||
* Hook to define new tags. | ||
* @param {Object} dictionary The tag dictionary. | ||
*/ | ||
exports.defineTags = function(dictionary) { | ||
dictionary.defineTag('define', { | ||
canHaveType: true, | ||
mustHaveValue: true, | ||
onTagged: function(doclet, tag) { | ||
const types = tag.value.type.names; | ||
if (types.length === 1 && types[0] === 'boolean') { | ||
const match = tag.value.description.match(DEFAULT_VALUE); | ||
if (match) { | ||
doclet.define = { | ||
default: match[1] === 'true' | ||
}; | ||
doclet.description = tag.value.description; | ||
} | ||
} | ||
} | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Handle the interface and abstract annotations. | ||
* @param {Object} dictionary The tag dictionary. | ||
*/ | ||
exports.defineTags = function(dictionary) { | ||
const classTag = dictionary.lookUp('class'); | ||
dictionary.defineTag('interface', { | ||
mustNotHaveValue: true, | ||
onTagged: function(doclet, tag) { | ||
classTag.onTagged.apply(this, arguments); | ||
doclet.virtual = true; | ||
} | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
0 info it worked if it ends with ok | ||
1 verbose cli [ '/home/danielluna/.nvm/versions/node/v6.9.1/bin/node', | ||
1 verbose cli '/home/danielluna/.nvm/versions/node/v6.9.1/bin/npm', | ||
1 verbose cli [ '/home/antoniojamador/.nvm/versions/node/v6.9.1/bin/node', | ||
1 verbose cli '/home/antoniojamador/.nvm/versions/node/v6.9.1/bin/npm', | ||
1 verbose cli 'run', | ||
1 verbose cli 'build' ] | ||
2 info using [email protected] | ||
3 info using [email protected] | ||
4 verbose run-script [ 'prebuild', 'build', 'postbuild' ] | ||
5 info lifecycle apiign@1.0.0~prebuild: apiign@1.0.0 | ||
6 verbose lifecycle apiign@1.0.0~prebuild: unsafe-perm in lifecycle true | ||
7 verbose lifecycle apiign@1.0.0~prebuild: PATH: /home/danielluna/.nvm/versions/node/v6.9.1/lib/node_modules/npm/bin/node-gyp-bin:/home/danielluna/desagit/mapea-lite/api-ign-js/node_modules/.bin:/home/danielluna/.nvm/versions/node/v6.9.1/bin:/home/danielluna/bin:/home/danielluna/.local/bin:/home/danielluna/bin:/home/danielluna/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin | ||
8 verbose lifecycle apiign@1.0.0~prebuild: CWD: /home/danielluna/desagit/mapea-lite/api-ign-js | ||
9 silly lifecycle apiign@1.0.0~prebuild: Args: [ '-c', | ||
5 info lifecycle apiign@3.3.2~prebuild: apiign@3.3.2 | ||
6 verbose lifecycle apiign@3.3.2~prebuild: unsafe-perm in lifecycle true | ||
7 verbose lifecycle apiign@3.3.2~prebuild: PATH: /home/antoniojamador/.nvm/versions/node/v6.9.1/lib/node_modules/npm/bin/node-gyp-bin:/opt/Workspaces/mapea-lite/mapea-lite/api-ign-js/node_modules/.bin:/home/antoniojamador/.nvm/versions/node/v6.9.1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin:/opt/gradle/gradle-3.5/bin | ||
8 verbose lifecycle apiign@3.3.2~prebuild: CWD: /opt/Workspaces/mapea-lite/mapea-lite/api-ign-js | ||
9 silly lifecycle apiign@3.3.2~prebuild: Args: [ '-c', | ||
9 silly lifecycle 'node tasks/clean-build.js --path=dist && node tasks/generate-index.js' ] | ||
10 silly lifecycle apiign@1.0.0~prebuild: Returned: code: 1 signal: null | ||
11 info lifecycle apiign@1.0.0~prebuild: Failed to exec prebuild script | ||
12 verbose stack Error: apiign@1.0.0 prebuild: `node tasks/clean-build.js --path=dist && node tasks/generate-index.js` | ||
10 silly lifecycle apiign@3.3.2~prebuild: Returned: code: 1 signal: null | ||
11 info lifecycle apiign@3.3.2~prebuild: Failed to exec prebuild script | ||
12 verbose stack Error: apiign@3.3.2 prebuild: `node tasks/clean-build.js --path=dist && node tasks/generate-index.js` | ||
12 verbose stack Exit status 1 | ||
12 verbose stack at EventEmitter.<anonymous> (/home/danielluna/.nvm/versions/node/v6.9.1/lib/node_modules/npm/lib/utils/lifecycle.js:255:16) | ||
12 verbose stack at EventEmitter.<anonymous> (/home/antoniojamador/.nvm/versions/node/v6.9.1/lib/node_modules/npm/lib/utils/lifecycle.js:255:16) | ||
12 verbose stack at emitTwo (events.js:106:13) | ||
12 verbose stack at EventEmitter.emit (events.js:191:7) | ||
12 verbose stack at ChildProcess.<anonymous> (/home/danielluna/.nvm/versions/node/v6.9.1/lib/node_modules/npm/lib/utils/spawn.js:40:14) | ||
12 verbose stack at ChildProcess.<anonymous> (/home/antoniojamador/.nvm/versions/node/v6.9.1/lib/node_modules/npm/lib/utils/spawn.js:40:14) | ||
12 verbose stack at emitTwo (events.js:106:13) | ||
12 verbose stack at ChildProcess.emit (events.js:191:7) | ||
12 verbose stack at maybeClose (internal/child_process.js:877:16) | ||
12 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5) | ||
13 verbose pkgid apiign@1.0.0 | ||
14 verbose cwd /home/danielluna/desagit/mapea-lite/api-ign-js | ||
15 error Linux 4.4.0-154-generic | ||
16 error argv "/home/danielluna/.nvm/versions/node/v6.9.1/bin/node" "/home/danielluna/.nvm/versions/node/v6.9.1/bin/npm" "run" "build" | ||
13 verbose pkgid apiign@3.3.2 | ||
14 verbose cwd /opt/Workspaces/mapea-lite/mapea-lite/api-ign-js | ||
15 error Linux 4.15.0-118-generic | ||
16 error argv "/home/antoniojamador/.nvm/versions/node/v6.9.1/bin/node" "/home/antoniojamador/.nvm/versions/node/v6.9.1/bin/npm" "run" "build" | ||
17 error node v6.9.1 | ||
18 error npm v3.10.8 | ||
19 error code ELIFECYCLE | ||
20 error apiign@1.0.0 prebuild: `node tasks/clean-build.js --path=dist && node tasks/generate-index.js` | ||
20 error apiign@3.3.2 prebuild: `node tasks/clean-build.js --path=dist && node tasks/generate-index.js` | ||
20 error Exit status 1 | ||
21 error Failed at the apiign@1.0.0 prebuild script 'node tasks/clean-build.js --path=dist && node tasks/generate-index.js'. | ||
21 error Failed at the apiign@3.3.2 prebuild script 'node tasks/clean-build.js --path=dist && node tasks/generate-index.js'. | ||
21 error Make sure you have the latest version of node.js and npm installed. | ||
21 error If you do, this is most likely a problem with the apiign package, | ||
21 error not with npm itself. | ||
|
Oops, something went wrong.