Skip to content

Commit

Permalink
feat!: added css layer, and release please
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmerseren committed Jun 26, 2024
1 parent f487dff commit 504b844
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 58 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/release-package.yml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release Please and Publish

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write
packages: write

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node

- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}

- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
if: ${{ steps.release.outputs.release_created }}

- run: yarn
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ steps.release.outputs.release_created }}

- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ steps.release.outputs.release_created }}
32 changes: 17 additions & 15 deletions components/LinkTile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -445,20 +445,22 @@ function getPath(event, _element = null, _path = null) {
</script>
<style>
:where(.c-link-tile) {
position: relative;
display: block;
}
:where(.c-link-tile__link) {
position: absolute;
z-index: 99999;
display: block;
pointer-events: none;
inset: 0;
}
:where(.c-link-tile[data-hover='hover']) {
cursor: pointer;
@layer limbo-package {
:where(.c-link-tile) {
position: relative;
display: block;
}
:where(.c-link-tile__link) {
position: absolute;
z-index: 99999;
display: block;
pointer-events: none;
inset: 0;
}
:where(.c-link-tile[data-hover='hover']) {
cursor: pointer;
}
}
</style>
13 changes: 13 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "node",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 504b844

Please sign in to comment.