-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8ea763
commit f0efd4a
Showing
62 changed files
with
1,692 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules | ||
package-lock.json | ||
yarn.lock | ||
*.result.css | ||
*.result.css.map | ||
*.result.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v20.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { postcssTape } from '@csstools/postcss-tape'; | ||
import plugin from '@csstools/postcss-bundler'; | ||
|
||
const testCases = { | ||
basic: { | ||
message: "supports basic usage", | ||
}, | ||
'leading-slash': { | ||
message: "does not infer a root to resolve leading slash imports", | ||
exception: /Failed to find \'\/imports\/basic.css\'/, | ||
}, | ||
'does-not-exist': { | ||
message: "throws on files that don't exist", | ||
exception: /Failed to find 'imports\/does-not-exist.css'/, | ||
}, | ||
'examples/example': { | ||
message: 'minimal example', | ||
}, | ||
} | ||
|
||
postcssTape(plugin)(testCases); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Changes to PostCSS Bundler | ||
|
||
### Unreleased (major) | ||
|
||
- Initial major version | ||
|
||
### 0.1.0-alpha.6 | ||
|
||
_August 16, 2023_ | ||
|
||
- Reduce filesystem access | ||
|
||
### 0.1.0-alpha.5 | ||
|
||
_August 15, 2023_ | ||
|
||
- Stricter parsing algorithm | ||
|
||
### 0.1.0-alpha.4 | ||
|
||
_August 15, 2023_ | ||
|
||
- Fix sourcemaps | ||
|
||
### 0.1.0-alpha.3 | ||
|
||
_August 14, 2023_ | ||
|
||
- Fix the path from which node modules are resolved | ||
|
||
### 0.1.0-alpha.2 | ||
|
||
_August 14, 2023_ | ||
|
||
- Use the `node_modules:` scheme to reference imports from a `node_modules` package | ||
|
||
### 0.1.0-alpha.1 | ||
|
||
_August 14, 2023_ | ||
|
||
- Use the `npm:` scheme to reference imports from a `node_modules` package | ||
|
||
### 0.1.0-alpha.0 | ||
|
||
_August 14, 2023_ | ||
|
||
- Initial version |
Oops, something went wrong.