Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprudhomme committed Jan 15, 2025
1 parent 77e5d0d commit c8629b7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/atomic/dev/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@
<atomic-search-interface fields-to-include='["snrating", "sncost"]'>
<atomic-search-layout>
<div class="header-bg"></div>
<atomic-text></atomic-text>
<atomic-layout-section section="search">
<atomic-search-box></atomic-search-box>
</atomic-layout-section>
Expand Down
5 changes: 2 additions & 3 deletions packages/atomic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@
"publish:npm": "npm run-script -w=@coveo/release npm-publish",
"publish:bump": "npm run-script -w=@coveo/release bump",
"promote:npm:latest": "npm run-script -w=@coveo/release promote-npm-prod",
"validate:definitions": "tsc --noEmit --esModuleInterop --skipLibCheck ./dist/types/components.d.ts",
"test:browser": "vitest"
"validate:definitions": "tsc --noEmit --esModuleInterop --skipLibCheck ./dist/types/components.d.ts"
},
"dependencies": {
"@coveo/bueno": "1.0.7",
Expand Down Expand Up @@ -153,7 +152,7 @@
},
"peerDependencies": {
"@coveo/bueno": "1.0.7",
"@coveo/headless": "3.13.0"
"@coveo/headless": "3.13.1"
},
"license": "Apache-2.0",
"engines": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import {describe, it, expect} from 'vitest';
import {transformMarkdownToHtml} from './markdown-utils.js';

describe('markdownUtils', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/atomic/src/components/search/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Export the class of the components migrated to Lit here, like this:
// export {AtomicText} from './atomic-text/atomic-text.js';
//export {AtomicText} from './atomic-text/atomic-text.js';

// TODO: Remove this line once at least one component is migrated to Lit.
export {};
2 changes: 1 addition & 1 deletion packages/atomic/src/utils/utils.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {describe, it, expect, vi} from 'vitest';
import {vi} from 'vitest';
import {
once,
camelToKebab,
Expand Down

0 comments on commit c8629b7

Please sign in to comment.