Skip to content

Commit fd1c794

Browse files
committed
Removed npm alias from dist code. To test displaying image in NPM README by updating 'repository' field in 'package.json'
1 parent 2b3b515 commit fd1c794

File tree

5 files changed

+156
-38
lines changed

5 files changed

+156
-38
lines changed

dist/index.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ _export(exports, {
1919
return printRejectedMsg;
2020
}
2121
});
22-
const _stylelint16 = _interop_require_default(require("stylelint16"));
22+
const _stylelint = _interop_require_default(require("stylelint"));
2323
function _interop_require_default(obj) {
2424
return obj && obj.__esModule ? obj : {
2525
default: obj
2626
};
2727
}
28-
const { createPlugin, utils: { report, ruleMessages, validateOptions } } = _stylelint16.default;
28+
const { createPlugin, utils: { report, ruleMessages, validateOptions } } = _stylelint.default;
2929
const TRANSFORM_FUNCTIONS = {
3030
matrix: /matrix\s/g,
3131
matrix3d: /matrix3d\s/g,

dist/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import stylelint from "stylelint16";
1+
import stylelint from "stylelint";
22
const { createPlugin, utils: { report, ruleMessages, validateOptions } } = stylelint;
33
export const TRANSFORM_FUNCTIONS = {
44
matrix: /matrix\s/g,

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import stylelint, { Rule } from "stylelint16";
1+
import stylelint, { Rule } from "stylelint";
22

33
const {
44
createPlugin,

0 commit comments

Comments
 (0)