Skip to content

Commit

Permalink
correct filepath for cherry script
Browse files Browse the repository at this point in the history
  • Loading branch information
blendtwenty committed Feb 22, 2024
1 parent 0c43889 commit 8ccdb4e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"license": "ISC",
"scripts": {
"dev": "web-dev-server --open example/ --node-resolve --watch",
"test": "web-test-runner \"src/**/*test.html\" --node-resolve --playwright --browsers firefox",
"test:watch": "web-test-runner src/**/*.test.html --node-resolve --watch",
"test": "web-test-runner \"src/**/test.html\" --node-resolve --playwright --browsers firefox",
"test:watch": "web-test-runner src/**/test.html --node-resolve --watch",
"prepare": "husky"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/doge-pal/doge-pal.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
dogeComponentInit,
resourceBasePath,
LitElement, css, html, classMap
} from "../lib/cherry.js"
} from "../../lib/cherry.js"

export class DogePal extends LitElement {
static styles = css``;
Expand Down
2 changes: 1 addition & 1 deletion src/components/doge-price/doge-price.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
dogeComponentInit,
resourceBasePath,
LitElement, css, html, classMap
} from "../lib/cherry.js"
} from "../../lib/cherry.js"

export class DogePrice extends LitElement {
static styles = css``;
Expand Down
4 changes: 2 additions & 2 deletions src/components/doge-qr/doge-qr.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import {
dogeComponentInit,
resourceBasePath,
LitElement, css, html, classMap
} from "../lib/cherry.js"
import "../../resources/blocks/[email protected]/qr-code-styling.js";
} from "../../lib/cherry.js"
import "../../../resources/blocks/[email protected]/qr-code-styling.js";

export class DogeQR extends LitElement {
static properties = {
Expand Down

0 comments on commit 8ccdb4e

Please sign in to comment.