Skip to content

Commit 5a11757

Browse files
committed
[parser][crawler][ext] Update package.json and imports. Remove /node_modules and reinstall.
1 parent 50263f0 commit 5a11757

7 files changed

Lines changed: 42 additions & 43 deletions

File tree

package-lock.json

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/chrome-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"esbuild": "0.25.10"
1212
},
1313
"dependencies": {
14-
"@clonecss/cleanclone-core": "file:../core",
14+
"@devtoolcss/parser": "file:../parser",
1515
"highlight.js": "^11.11.1",
1616
"js-beautify": "^1.15.4"
1717
},

packages/chrome-extension/sidebar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
toStyleJSON,
1010
replaceVariables,
1111
forciblePseudoClasses,
12-
} from "@clonecss/cleanclone-core";
12+
} from "@devtoolcss/parser";
1313

1414
import { getUniqueSelector } from "./selector.js";
1515

packages/crawler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"type": "module",
2424
"dependencies": {
25-
"@clonecss/cleanclone-core": "^0.0.0",
25+
"@devtoolcss/parser": "file:../parser",
2626
"chalk": "^5.6.2",
2727
"chrome-launcher": "^1.2.1",
2828
"chrome-remote-interface": "^0.33.3",

packages/crawler/src/crawler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
CDPNodeType,
1313
inlineStyle,
1414
forciblePseudoClasses,
15-
} from "@clonecss/cleanclone-core";
15+
} from "@devtoolcss/parser";
1616
import type {
1717
Node,
1818
GetMatchedStylesForNodeResponse,

packages/crawler/src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Protocol } from "devtools-protocol";
22
import type { ProtocolProxyApi } from "devtools-protocol/types/protocol-proxy-api.js";
3-
import type { ParsedStyleSheet } from "@clonecss/cleanclone-core";
3+
import type { ParsedStyleSheet } from "@devtoolcss/parser";
44

55
export type {
66
ParsedStyleSheet,
@@ -9,7 +9,7 @@ export type {
99
GetMatchedStylesForNodeResponse,
1010
RuleMatch,
1111
CSSProperty,
12-
} from "@clonecss/cleanclone-core";
12+
} from "@devtoolcss/parser";
1313

1414
export type Node = Omit<Protocol.DOM.Node, "children"> & {
1515
id?: string;

packages/parser/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
2-
"name": "@clonecss/cleanclone-core",
3-
"private": true,
2+
"name": "@devtoolcss/parser",
43
"version": "0.0.0",
54
"description": "",
65
"license": "MIT",

0 commit comments

Comments
 (0)