Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add new css parser - postcss #1458

Merged
merged 35 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a04450a
feat: add new css parser
daibhin Apr 24, 2024
f3fa193
make selectors change
daibhin Apr 24, 2024
28b19d7
selectors and tests
daibhin Apr 24, 2024
692899d
media changes
daibhin Apr 24, 2024
d82f6f8
remove old css references
daibhin Apr 24, 2024
fe24180
better variable name
daibhin Apr 25, 2024
b91f030
use postcss and port tests
daibhin Apr 25, 2024
ef35af7
fix media test
daibhin Apr 29, 2024
9b10e29
remove old code
daibhin Apr 29, 2024
5b23dde
inline plugins
daibhin Apr 30, 2024
b011a3e
fix failing multiline selector
daibhin Apr 30, 2024
bd8bb5e
correct test result
daibhin Apr 30, 2024
77fa5cb
move tests to correct file
daibhin Apr 30, 2024
77cd5e4
cleanup all tests
daibhin Apr 30, 2024
4a48247
remove unused css-tree
daibhin Apr 30, 2024
796e723
update bundle
daibhin Apr 30, 2024
75fd312
cleanup dependencies
daibhin Jun 7, 2024
d22b001
Merge branch 'master' into fix/css-selectors
daibhin Jun 7, 2024
48d0f06
revert config files to master
daibhin Jun 7, 2024
43cdf3b
Merge branch 'master' into fix/css-selectors
daibhin Jun 7, 2024
1cc4a45
remove d.ts files
daibhin Jun 7, 2024
a17801e
Merge branch 'master' into fix/css-selectors
daibhin Jun 7, 2024
3663005
Merge branch 'master' into fix/css-selectors
daibhin Jun 10, 2024
360dad8
update snapshot
daibhin Jun 11, 2024
36dfd60
reset rebuilt test
daibhin Jun 11, 2024
794b9ff
apply fuzzy css matching
daibhin Jun 11, 2024
e8a0bc2
Merge branch 'master' into fix/css-selectors
daibhin Jun 17, 2024
40e26ad
Merge branch 'master' into fix/css-selectors
daibhin Jun 19, 2024
35952fe
remove extra test
daibhin Jun 19, 2024
600f9cf
Merge branch 'master' into fix/css-selectors
Juice10 Jun 26, 2024
2872d0e
Fix imports
Juice10 Jun 26, 2024
c7153b7
Newer versions of nswapi break rrdom-nodejs tests.
Juice10 Jun 26, 2024
9df9946
Migrate from jest to vitest
Juice10 Jun 26, 2024
8f3ba8b
Order of selectors has changed with postcss
Juice10 Jun 26, 2024
cdede94
Remove unused eslint
Juice10 Jun 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/rrweb-snapshot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rrweb-snapshot",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.12",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should probably be 13?

"description": "rrweb's component to take a snapshot of DOM, aka DOM serializer",
"scripts": {
"prepare": "npm run prepack",
Expand Down Expand Up @@ -58,6 +58,10 @@
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.0.5",
"ts-node": "^7.0.1",
"tslib": "^1.9.3"
"tslib": "^1.9.3",
"@types/css-tree": "^2.3.7"
},
"dependencies": {
"css-tree": "^2.3.1"
}
}
Loading
Loading