Skip to content

Commit

Permalink
Merge pull request #104 from nzzdev/release-1.10.1
Browse files Browse the repository at this point in the history
Release 1.10.1
  • Loading branch information
manuelroth committed Sep 23, 2019
2 parents fd407f7 + 4e5b4ad commit c8b5ac5
Show file tree
Hide file tree
Showing 8 changed files with 657 additions and 306 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The following environment variables must be specified when starting the tool:
`{width}` is replaced by the width the image should be loaded
`{format}` will be `png` or `webp` (a `picture` element is used in the HTML with multiple `source` elements)
Example: `https://q-images.nzz.ch/{key}?width={width}&format={format}`
- `MAP` - object containing properties (style url, attribution) for the map required by the mappointguess question type

Please have a look at the test environment for examples on what this variables should look like.

Expand Down
20 changes: 12 additions & 8 deletions jspm.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,35 @@ SystemJS.config({
"github:": "jspm_packages/github/"
},
browserConfig: {
baseURL: "/"
"baseURL": "/"
},
devConfig: {
map: {
"map": {
"plugin-babel": "npm:[email protected]"
}
},
transpiler: "plugin-babel",
packages: {
"q-quiz": {
main: "q-quiz.js",
meta: {
"main": "q-quiz.js",
"meta": {
"*.js": {
loader: "plugin-babel"
"loader": "plugin-babel"
}
}
}
}
});

SystemJS.config({
packageConfigPaths: ["npm:@*/*.json", "npm:*.json", "github:*/*.json"],
packageConfigPaths: [
"npm:@*/*.json",
"npm:*.json",
"github:*/*.json"
],
map: {
leaflet: "github:Leaflet/Leaflet@1.3.3",
text: "github:systemjs/[email protected]"
"leaflet": "github:Leaflet/Leaflet@1.5.1",
"text": "github:systemjs/[email protected]"
},
packages: {}
});
Loading

0 comments on commit c8b5ac5

Please sign in to comment.