Skip to content

Commit

Permalink
Flatten file hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
madyankin committed Nov 4, 2022
1 parent d0c05d8 commit 1ad9a28
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/css-loader-core/loader.js → src/FileSystemLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import postcss from "postcss";
import fs from "fs";
import path from "path";

import Parser from "./parser";
import Parser from "./Parser";

class Core {
constructor(plugins) {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import camelCase from "lodash.camelcase";
import genericNames from "generic-names";
import unquote from "./unquote";

import Parser from "./css-loader-core/parser";
import FileSystemLoader from "./css-loader-core/loader";
import Parser from "./Parser";
import FileSystemLoader from "./FileSystemLoader";

import generateScopedName from "./generateScopedName";
import saveJSON from "./saveJSON";
Expand Down
2 changes: 1 addition & 1 deletion src/unquote/index.js → src/unquote.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// copied from https://github.com/lakenen/node-unquote

var reg = /['"]/;
const reg = /['"]/;

export default function unquote(str) {
if (!str) {
Expand Down

0 comments on commit 1ad9a28

Please sign in to comment.