@getlupa/client 0.4.3-1 → 0.4.3-2

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.
@@ -8,4 +8,5 @@ declare const lupaSearch: {
8
8
  clearSearchBox: () => void;
9
9
  clearSearchResults: () => void;
10
10
  };
11
+ export { TrackingOptions, SearchBoxOptions, SearchResultsOptions };
11
12
  export default lupaSearch;
@@ -8,4 +8,5 @@ declare const lupaSearch: {
8
8
  clearSearchBox: () => void;
9
9
  clearSearchResults: () => void;
10
10
  };
11
+ export { TrackingOptions, SearchBoxOptions, SearchResultsOptions };
11
12
  export default lupaSearch;
@@ -8,4 +8,5 @@ declare const lupaSearch: {
8
8
  clearSearchBox: () => void;
9
9
  clearSearchResults: () => void;
10
10
  };
11
+ export { TrackingOptions, SearchBoxOptions, SearchResultsOptions };
11
12
  export default lupaSearch;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlupa/client",
3
- "version": "0.4.3-1",
3
+ "version": "0.4.3-2",
4
4
  "main": "dist/cjs/index.min.js",
5
5
  "module": "dist/es/index.min.js",
6
6
  "types": "dist/es/index.d.ts",
@@ -1,23 +0,0 @@
1
- # This is a basic workflow to help you get started with Actions
2
-
3
- name: Lupa-Test
4
-
5
- on:
6
- pull_request:
7
- push:
8
- branches:
9
- - main
10
- workflow_dispatch:
11
-
12
- jobs:
13
- test:
14
- runs-on: ubuntu-latest
15
-
16
- steps:
17
- - uses: actions/checkout@v3
18
- - uses: c-hive/gha-yarn-cache@v2
19
- - run: yarn install
20
- - run: yarn build
21
- - run: yarn validate:es5
22
- - run: yarn test:unit
23
- - run: yarn test:e2e
@@ -1,24 +0,0 @@
1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
-
4
- name: NPM Package
5
-
6
- on:
7
- release:
8
- types: [created]
9
-
10
- jobs:
11
-
12
- publish-npm:
13
- runs-on: ubuntu-latest
14
- steps:
15
- - uses: actions/checkout@v3
16
- - uses: actions/setup-node@v3
17
- with:
18
- node-version: 16
19
- registry-url: https://registry.npmjs.org/
20
- - run: yarn install
21
- - run: yarn build
22
- - run: yarn publish --access public
23
- env:
24
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package/cypress.json DELETED
@@ -1 +0,0 @@
1
- {}