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

[FIX] Revert "Switch to maintained fork of "css" package" #261

Merged
merged 2 commits into from
Dec 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

const path = require("path");
const css = require("@adobe/css-tools");
const css = require("css");


const diff = require("./diff");
Expand Down
144 changes: 100 additions & 44 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@
"url": "git@github.com:SAP/less-openui5.git"
},
"dependencies": {
"@adobe/css-tools": "^4.0.1",
"clone": "^2.1.2",
"css": "^3.0.0",
"mime": "^1.6.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/test-diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"use strict";

const assert = require("assert");
const css = require("@adobe/css-tools");
const css = require("css");
const fs = require("fs");
const path = require("path");

Expand Down