-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release v3.0.0-beta.1 (merging branch v3 into dev)
- Loading branch information
Showing
75 changed files
with
6,952 additions
and
2,988 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"globals": { | ||
"STAC_BROWSER_VERSION": "readonly", | ||
"CONFIG_PATH": "readonly", | ||
"CONFIG_CLI": "readonly", | ||
"require": "readonly" | ||
}, | ||
"extends": [ | ||
"plugin:vue/strongly-recommended", | ||
"eslint:recommended" | ||
], | ||
"ignorePatterns": [ | ||
"**/stac-fields", | ||
"**/stac-migrate", | ||
"**/stac-layer", | ||
"config.js", | ||
"*.config.js" | ||
], | ||
"rules": { | ||
"curly": [1, "all"], | ||
"semi": [1, "always"], | ||
"vue/multi-word-component-names": "off", | ||
"vue/singleline-html-element-content-newline": "off", | ||
"vue/attribute-hyphenation": "off", | ||
"vue/max-attributes-per-line": ["error", { | ||
"singleline": { | ||
"max": 6 | ||
}, | ||
"multiline": { | ||
"max": 4 | ||
} | ||
}], | ||
"vue/component-tags-order": ["error", { | ||
"order": ["template", "script", "style"] | ||
}], | ||
"vue/order-in-components": "error", | ||
"vue/this-in-template": "error", | ||
"vue/match-component-file-name": "error" | ||
} | ||
} |
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,22 @@ | ||
name: Deploy | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- uses: actions/checkout@v2 | ||
- run: npm install | ||
- run: npm run build -- --pathPrefix="/stac-browser" --historyMode=hash | ||
- uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: dist | ||
exclude_assets: 'report.html' | ||
user_name: 'STAC Browser CI' | ||
user_email: [email protected] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 +1,8 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/cli-plugin-babel/preset' | ||
], | ||
plugins: [ | ||
"@babel/plugin-proposal-optional-chaining" | ||
] | ||
} | ||
}; |
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,20 @@ | ||
module.exports = { | ||
catalogUrl: null, | ||
catalogTitle: "STAC Browser", | ||
allowExternalAccess: true, // Must be true if catalogUrl is not given | ||
useTileLayerAsFallback: true, | ||
tileSourceTemplate: null, | ||
buildTileUrlTemplate: ({href, asset}) => 'https://tiles.rdnt.io/tiles/{z}/{x}/{y}@2x?url=' + encodeURIComponent(asset.href.startsWith('/vsi') ? asset.href : href), | ||
stacProxyUrl: null, | ||
pathPrefix: "/", | ||
historyMode: "history", | ||
cardViewMode: 'cards', | ||
showThumbnailsAsAssets: false, | ||
stacLint: true, | ||
geoTiffResolution: 128, | ||
redirectLegacyUrls: false, | ||
itemsPerPage: 12, | ||
crossOriginMedia: null, | ||
requestHeaders: {}, | ||
requestQueryParameters: {} | ||
}; |
Oops, something went wrong.