Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
Fix wrapper docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mechazawa committed Aug 30, 2019
1 parent 311e47a commit d2abe78
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ node('node') {
sh 'npm install'
sh 'npm run compile-docs-wrapper'
sh 'npm run generate-model-tables'
sh 'sudo bundle install'
sh 'sudo bundle install' // 🤢🤮
sh 'bundle exec middleman build --clean'
}

Expand Down
95 changes: 80 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 23 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"generate-model-tables": "node scripts/generateTables.js"
},
"dependencies": {
"@mapcreator/maps4news": "^1.6.12",
"@mapcreator/maps4news": "^1.6.22",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
Expand Down Expand Up @@ -41,6 +41,16 @@
"brand": {
"title": "Maps4News Api Wrapper",
"description": "Maps4News Api Javascript Wrapper"
},
"manual": {
"asset": "./node_modules/@mapcreator/maps4news/manual/assets",
"index": "./node_modules/@mapcreator/maps4news/README.md",
"files": [
"./node_modules/@mapcreator/maps4news/manual/examples.md",
"./node_modules/@mapcreator/maps4news/manual/examples.authentication.md",
"./node_modules/@mapcreator/maps4news/manual/building.md",
"./node_modules/@mapcreator/maps4news/manual/installation.md"
]
}
}
},
Expand All @@ -61,7 +71,19 @@
}
]
}
},
{
"name": "esdoc-inject-script-plugin",
"option": {
"enable": true,
"scripts": [
"./node_modules/@mapcreator/maps4news/dist/bundle.browser.js",
]
}
}
]
},
"devDependencies": {
"esdoc-inject-script-plugin": "^1.0.0"
}
}

0 comments on commit d2abe78

Please sign in to comment.