Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
docs: fix vue component for parsing core api key/values
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Hippely <mhippely@vmware.com>
  • Loading branch information
hippee-lee committed Feb 1, 2022
1 parent 21cf053 commit 7b97d4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/website/.vuepress/public/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[
{ "version": "v12", "url": "https://angular.clarity.design" },
{ "version": "v13", "url": "https://angular.clarity.design" },
{ "version": "v12", "url": "https://v12.clarity.design" },
{ "version": "v5", "url": "https://v5.clarity.design" },
{ "version": "v4", "url": "https://v4.clarity.design/documentation" },
{ "version": "v3", "url": "https://v3.clarity.design" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
props: ['component'],
data: function () {
const CustomElement = API.modules
.filter(module => module.path.includes('element.d.ts'))
.filter(module => module.path.includes('element.js'))
.find(
module =>
module.declarations &&
Expand Down
3 changes: 3 additions & 0 deletions scripts/website.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env bash

# Make sre the environment is ready before the deploy command.
sleep 5

echo "Deploy a preview that can be promoted to clarity.design when we are ready"
# Deploy a preview that can be promoted to production when we are ready
./node_modules/.bin/netlify deploy --json --dir=./dist/website --message="Website - $GITHUB_REF@$GITHUB_SHA" --site "clarity.design"
Expand Down

0 comments on commit 7b97d4f

Please sign in to comment.