-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switched over to pnpm * fix workflows * fix codeclimate dependency * add default cypress setup * add sha1sum * update docs
- Loading branch information
Showing
15 changed files
with
11,939 additions
and
17,180 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
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,6 +1,36 @@ | ||
.DS_Store | ||
dist | ||
node_modules | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
node_modules/ | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
dist/ | ||
artifacts/ | ||
work/ | ||
ci/ | ||
e2e-results/ | ||
**/cypress/videos | ||
**/cypress/report.json | ||
|
||
# Editor | ||
.idea | ||
|
||
.eslintcache | ||
.yarn/install-state.gz |
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,14 @@ | ||
# This file is required for PNPM | ||
|
||
# PNPM 8 changed the default resolution mode to "lowest-direct" which is not how we expect resolutions to work | ||
resolution-mode="highest" | ||
|
||
# Make sure the default patterns are still included (https://pnpm.io/npmrc#public-hoist-pattern) | ||
public-hoist-pattern[]="*eslint*" | ||
public-hoist-pattern[]="*prettier*" | ||
|
||
# Hoist all types packages to the root for better TS support | ||
public-hoist-pattern[]="@types/*" | ||
|
||
# @grafana/e2e expects cypress to exist in the root of the node_modules directory | ||
public-hoist-pattern[]="*cypress*" |
Oops, something went wrong.