@kvass/widgets 1.1.6 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+ jobs:
7
+ deploy:
8
+ runs-on: ubuntu-20.04
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: actions/setup-node@v3
12
+ with:
13
+ node-version: '18'
14
+ - run: npm install
15
+ - name: Release
16
+ env:
17
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
18
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
19
+ run: npx semantic-release
package/index.html CHANGED
@@ -8,13 +8,6 @@
8
8
  </head>
9
9
 
10
10
  <body>
11
- <kvass-vimeo
12
- url="https://vimeo.com/833277445"
13
- autoplay="true"
14
- loop="true"
15
- ></kvass-vimeo>
16
-
17
- <script type="module" src="/src/vimeo/main.js"></script>
18
11
  <!-- <kvass-contact
19
12
  account-url="https://local.kvass.test"
20
13
  label-subtitle="Ønsker du å motta vårt nyhetsbrev?"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kvass/widgets",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "vite build",