Compare commits

...

2 Commits

Author SHA1 Message Date
10ab777e7f 5.0.5 2022-07-24 14:03:45 +02:00
898eed4584 fix(core): update 2022-07-24 14:03:44 +02:00
4 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@pushrocks/tapbundle",
"version": "5.0.4",
"version": "5.0.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@pushrocks/tapbundle",
"version": "5.0.4",
"version": "5.0.5",
"license": "MIT",
"dependencies": {
"@open-wc/testing": "^3.1.6",

View File

@ -1,7 +1,7 @@
{
"name": "@pushrocks/tapbundle",
"private": false,
"version": "5.0.4",
"version": "5.0.5",
"description": "tap bundled for tapbuffer",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/tapbundle',
version: '5.0.4',
version: '5.0.5',
description: 'tap bundled for tapbuffer'
}

View File

@ -15,7 +15,7 @@ class WebHelpers {
public enable() {
tap.preTask('enable webhelpers', async () => {
const webhelpers = await import('@open-wc/testing-helpers')
const webhelpers = await import('@open-wc/testing')
this.html = webhelpers.html;
this.fixture = webhelpers.fixture;
})