forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: migrate to nimbus and fix build (apache#319)
* build: change gitignore and update package.json * fix: importing issues * fix: missing reference * build: move buildAssets script * fix: prettier * fix: lints jsx-sort-default-props, sort-prop-types * fix: more lints jsx-sort-default-props, sort-prop-types * fix: remove all unnecessary eslint-disable * fix: export default type * fix: use .forEach instead of for...of * fix: package.json * fix: ts issue * fix: webpack config * fix: issue with for loop * fix: parallel coordinates * fix: parallel coordinates * fix: add prettier check Co-Authored-By: Evan Rusackas <evan@preset.io> * build: change type:dts to type * fix: bring back Math.pow * fix: use optional * fix: bring back .0 * fix: declare word in the loop * fix: for loop in sunburst Co-authored-by: Evan Rusackas <evan@preset.io>
- Loading branch information
1 parent
983de5e
commit 2b8e1f5
Showing
125 changed files
with
570 additions
and
479 deletions.
There are no files selected for viewing
55 changes: 40 additions & 15 deletions
55
superset-frontend/temporary_superset_ui/superset-ui/plugins/superset-ui-plugins/.gitignore
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,31 +1,56 @@ | ||
.babelrc | ||
.cache | ||
.cache-loader | ||
.DS_Store | ||
*.DS_Store | ||
|
||
# Logs | ||
logs/ | ||
*.log | ||
|
||
# Cache | ||
.bundle/ | ||
.happo/ | ||
.idea/ | ||
.next/ | ||
.cache | ||
.eslintcache | ||
.eslintignore | ||
.eslintrc.js | ||
.idea | ||
.npm | ||
.prettierignore | ||
.vscode | ||
.yarnclean | ||
|
||
*.log | ||
*.map | ||
*.min.js | ||
.*.swp | ||
|
||
babel.config.js | ||
# Directories | ||
build/ | ||
coverage/ | ||
dist/ | ||
esm/ | ||
jest.config.js | ||
lib/ | ||
logs/ | ||
public/ | ||
node_modules/ | ||
package-lock.json | ||
tmp/ | ||
|
||
# Custom | ||
*.map | ||
*.min.js | ||
test-changelog.md | ||
|
||
# Configs (provided by Nimbus) | ||
.babelrc | ||
.eslintignore | ||
.eslintrc.js | ||
.flowconfig | ||
.prettierignore | ||
babel.config.js | ||
jest.config.js | ||
prettier.config.js | ||
tsconfig.eslint.json | ||
tsconfig.json | ||
tsconfig.options.json | ||
*.tsbuildinfo | ||
webpack.config.js | ||
|
||
# Lock files, libs should not have lock files | ||
npm-shrinkwrap.json | ||
package-lock.json | ||
yarn.lock | ||
old-yarn.lock | ||
.*.swp | ||
_gh-pages |
104 changes: 53 additions & 51 deletions
104
...rontend/temporary_superset_ui/superset-ui/plugins/superset-ui-plugins/README.md
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
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.