-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
dist/* | ||
dist/* | ||
test/* |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
export default { | ||
input: "src/index.mjs", | ||
output: { | ||
file: "dist/index.js", | ||
format: "cjs" | ||
} | ||
file: "dist/index.cjs", | ||
format: "cjs", | ||
interop: id => id === "less" ? "defaultOnly" : "default" | ||
}, | ||
external: () => true | ||
}; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
pattern: "less/*.less", | ||
lessOptions: { | ||
sourceMap: {} | ||
} | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
body { | ||
background: #000; | ||
} | ||
/* | ||
a { | ||
color:#0a0; | ||
} | ||
@import "root-04"; | ||
some text | ||
*/ | ||
/*@import "root-05";*/ | ||
/* child-01 */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* child-02 */ | ||
/* child-02-1 */ | ||
/* child-02-2 */ | ||
body { | ||
background: #000; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
body { | ||
background: #000; | ||
} | ||
/* child-03 */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* child-04 */ | ||
/* child-04-1 */ | ||
body { | ||
background: #000; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/* child-05-1 */ | ||
body { | ||
background: #000; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.