-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use pure ES modules at the monorepo top level (#3970)
- Loading branch information
Showing
12 changed files
with
24 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
'use strict' | ||
|
||
module.exports = { extends: ['@commitlint/config-conventional'] } |
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
1 change: 1 addition & 0 deletions
1
packages/build/tests/edge_handlers/fixtures/simple/netlify/edge-handlers/test.js
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
2 changes: 1 addition & 1 deletion
2
packages/build/tests/plugins/fixtures/commonjs_local/netlify.toml
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[[plugins]] | ||
package = "./plugin" | ||
package = "./plugin.cjs" |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
packages/build/tests/plugins/fixtures/ts_transpile_already/netlify.toml
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[[plugins]] | ||
package = "./plugin" | ||
package = "./plugin.cjs" |
File renamed without changes.
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 |
---|---|---|
|
@@ -252,21 +252,21 @@ Generated by [AVA](https://avajs.dev). | |
plugins:␊ | ||
- inputs: {}␊ | ||
origin: config␊ | ||
package: ./plugin␊ | ||
package: ./plugin.cjs␊ | ||
␊ | ||
> Context␊ | ||
production␊ | ||
␊ | ||
> Loading plugins␊ | ||
- ./[email protected] from netlify.toml␊ | ||
- ./plugin.cjs@1.0.0 from netlify.toml␊ | ||
␊ | ||
────────────────────────────────────────────────────────────────␊ | ||
1. ./plugin (onPreBuild event) ␊ | ||
1. ./plugin.cjs (onPreBuild event) ␊ | ||
────────────────────────────────────────────────────────────────␊ | ||
␊ | ||
true␊ | ||
␊ | ||
(./plugin onPreBuild completed in 1ms)␊ | ||
(./plugin.cjs onPreBuild completed in 1ms)␊ | ||
␊ | ||
────────────────────────────────────────────────────────────────␊ | ||
Netlify Build Complete ␊ | ||
|
@@ -2564,21 +2564,21 @@ Generated by [AVA](https://avajs.dev). | |
plugins:␊ | ||
- inputs: {}␊ | ||
origin: config␊ | ||
package: ./plugin␊ | ||
package: ./plugin.cjs␊ | ||
␊ | ||
> Context␊ | ||
production␊ | ||
␊ | ||
> Loading plugins␊ | ||
- ./[email protected] from netlify.toml␊ | ||
- ./plugin.cjs@1.0.0 from netlify.toml␊ | ||
␊ | ||
────────────────────────────────────────────────────────────────␊ | ||
1. ./plugin (onPreBuild event) ␊ | ||
1. ./plugin.cjs (onPreBuild event) ␊ | ||
────────────────────────────────────────────────────────────────␊ | ||
␊ | ||
JavaScript␊ | ||
␊ | ||
(./plugin onPreBuild completed in 1ms)␊ | ||
(./plugin.cjs onPreBuild completed in 1ms)␊ | ||
␊ | ||
────────────────────────────────────────────────────────────────␊ | ||
Netlify Build Complete ␊ | ||
|
Binary file not shown.
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