Skip to content

Commit 9974210

Browse files
Merge pull request #1064 from xcube-dev/tejas-xxx-add-xcube-viewer-build-1.3.0-dev.2
bundled xcube viewer 1.3.0
2 parents ef5a243 + 9c03505 commit 9974210

11 files changed

+3771
-3728
lines changed

CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
### Enhancements
44

5+
* Bundled [xcube-viewer 1.3.0](https://github.com/xcube-dev/xcube-viewer/releases/tag/v1.3.0).
6+
57
* xcube server can now deal with "user-defined" variables. Endpoints
68
that accept a `{varName}` path parameter in their URL path can now be
79
called with assignment expressions of the form `<var_name>=<var_expr>`

xcube/webapi/viewer/dist/assets/index-0Y0zLKBA.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

xcube/webapi/viewer/dist/assets/index-Cf0_zMLN.js

+3,735
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

xcube/webapi/viewer/dist/assets/index-CsG0ZZ4e.js

-3,725
This file was deleted.

xcube/webapi/viewer/dist/assets/index-CuHumUjy.css

-1
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

xcube/webapi/viewer/dist/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
<link rel="apple-touch-icon" href="./images/logo192.png"/>
3939
<link rel="manifest" href="./manifest.json"/>
4040
<title>xcube Viewer</title>
41-
<script type="module" crossorigin src="./assets/index-CsG0ZZ4e.js"></script>
42-
<link rel="stylesheet" crossorigin href="./assets/index-CuHumUjy.css">
41+
<script type="module" crossorigin src="./assets/index-Cf0_zMLN.js"></script>
42+
<link rel="stylesheet" crossorigin href="./assets/index-0Y0zLKBA.css">
4343
</head>
4444
<body>
4545
<noscript>You need to enable JavaScript to run this app.</noscript>

xcube/webapi/viewer/tsconfig.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"@/*": ["src/*"]
6+
},
7+
8+
"target": "ES2020",
9+
"useDefineForClassFields": true,
10+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
11+
"module": "ESNext",
12+
"skipLibCheck": true,
13+
14+
/* Bundler mode */
15+
"moduleResolution": "bundler",
16+
"allowJs": true,
17+
"allowImportingTsExtensions": false,
18+
"resolveJsonModule": true,
19+
"isolatedModules": true,
20+
"noEmit": true,
21+
"jsx": "react-jsx",
22+
23+
/* Linting */
24+
"strict": true,
25+
"noUnusedLocals": true,
26+
"noUnusedParameters": true,
27+
"noFallthroughCasesInSwitch": true
28+
},
29+
"include": ["src"],
30+
"references": [{ "path": "./tsconfig.node.json" }]
31+
}

0 commit comments

Comments
 (0)