This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
Staging merge to master #654
Closed
Closed
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
2cce387
feat: Create placeholders for all top level pages
amiller-gh 5917623
feat: Create placeholder /download page
amiller-gh a58b5c3
feat: Create hooks dir, add useReleaseHistory hook
jonchurch d29c04e
feat: Create custom hooks dir, create useReleaseData hook
jonchurch 7d9d3c2
chore: Format useReleaseData with prettier
jonchurch 79316f7
feat: Add API docs hook and render list of modules for POC API page
amiller-gh d3071d1
feat: Use useReleaseHistory hook to fetch data
jonchurch 554d5ce
feat: Add release table component, add to downloads page
jonchurch 6421f37
fix: Off by one error when slicing release history first 25
jonchurch 3a48e26
fix: Key rows off version instead of index
jonchurch 6b42291
feat: Add design tokens and style-guide page (#311)
ogonzal87 2544d61
feat: API Docs Version Switcher (#310)
amiller-gh ed1e003
chore: Move base font size to 10px
amiller-gh 6e62a30
feat: API Page Styling
amiller-gh 8f9df0c
fix: Use correct color for API Key interaction in light mode
amiller-gh 4c03eb7
feat: API docs side menu styles
amiller-gh 78e6d7d
Linter prettier integration (#315)
jonchurch dd9ce7a
feat: Basic learn page side bar styles
amiller-gh 3ffd681
feat: Basic API docs content rendering
amiller-gh 0f745ed
fix: Google Cloud Build (#317)
amiller-gh e144824
Feat/download content (#316)
jonchurch 19bd84a
feat: Home page (#325)
ogonzal87 517603a
feat: Enhanced Dark Mode prototype (#352)
SMotaal a4b0138
fix: Fixing spacing issues with typography and other elements (#353)
ogonzal87 2906dbc
doc: alternative title for landing page (#343)
MylesBorins 5e03a93
refactor(linting warnings): Fixed linting warnings (#410)
benhalverson 9e3be92
feat: Add Footer in layout (#326)
yogeshkotadiya e73a42e
docs(contributing.md): Added details on how to contribute (#397)
benhalverson ebe5c29
feat(banner): Added a new banner component (#398)
benhalverson 753ac90
Fix(banner.tsx): Set border property (#423)
benhalverson 1d317be
refactor: Enhanced Dark Mode as third-party dependency (#366)
SMotaal a493418
build: Switch dark-mode-controller to <0.5 (#428)
SMotaal c7626ec
refactor(.gitignore): Added .env.production to .gitignore
benhalverson cb2681f
fix(homepage): Removed mailing list signup (#489)
benhalverson 778a0a5
Merge branch 'master' of github.com:nodejs/nodejs.dev
benhalverson 305fa5b
Patch/master to staging (#554)
alexandrtovmach a6ec024
Merge branch 'master' of github.com:nodejs/nodejs.dev
benhalverson 152929c
fixed file definitions (#601)
alexandrtovmach eec2cb2
fix(pagination): Fixed the next and previous links on /learn (#491)
benhalverson ddee94a
patch/scss (#600)
alexandrtovmach 5e4c6d5
Merge branch 'master' of github.com:nodejs/nodejs.dev
benhalverson 4f24e00
Merge branch 'staging' of github.com:nodejs/nodejs.dev into staging
benhalverson aae7e7a
Folder refactor (#614)
benhalverson e3e879d
Merge branch 'staging' of github.com:nodejs/nodejs.dev into staging
benhalverson a3e365c
Merge branch 'master' of github.com:nodejs/nodejs.dev
benhalverson 9893a7e
Merge branch 'staging' into masterTestMerge
benhalverson eade28b
refactor(formatting): Fixed formatting
benhalverson 8e05ba7
Merge branch 'master' into masterTestMerge
benhalverson cdf9e1f
Merge branch 'master' into masterTestMerge
benhalverson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,2 @@ | ||
| test | ||
| public |
This file contains hidden or 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,56 @@ | ||
| module.exports = { | ||
| parser: '@typescript-eslint/parser', | ||
| parserOptions: { | ||
| ecmaFeatures: { | ||
| jsx: true, | ||
| }, | ||
| // project: './tsconfig.json' | ||
| }, | ||
| extends: [ | ||
| 'airbnb', | ||
| 'plugin:react/recommended', | ||
| 'plugin:@typescript-eslint/recommended', | ||
| 'prettier/@typescript-eslint', | ||
| 'prettier/react', | ||
| 'plugin:prettier/recommended', | ||
| ], | ||
| settings: { | ||
| react: { | ||
| version: 'detect', | ||
| }, | ||
| 'import/resolver': { | ||
| typescript: {}, | ||
| }, | ||
| }, | ||
| env: { | ||
| browser: true, | ||
| node: true, | ||
| jest: true, | ||
| }, | ||
| rules: { | ||
| 'react/jsx-filename-extension': 'off', | ||
| 'react-hooks/rules-of-hooks': 'error', | ||
| 'react-hooks/exhaustive-deps': 'warn', | ||
| 'import/prefer-default-export': 'off', | ||
| 'import/extensions': 'off', | ||
| 'consistent-return': 'off', | ||
| // "camelcase": "off", | ||
| // "@typescript-eslint/camelcase": ["error", { "properties": "never" }], | ||
| // "no-unused-vars": "off", | ||
| // "@typescript-eslint/no-unused-vars": "error", | ||
| // "@typescript-eslint/indent": ["error", 2] | ||
| }, | ||
| plugins: [ | ||
| '@typescript-eslint', | ||
| 'react-hooks', | ||
| // "prettier" | ||
| ], | ||
| overrides: [ | ||
| { | ||
| files: ['**/*.js'], | ||
| rules: { | ||
| '@typescript-eslint/no-var-requires': 'off', | ||
| }, | ||
| }, | ||
| ], | ||
| }; |
This file contains hidden or 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 hidden or 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,12 +1,12 @@ | ||
| { | ||
| "printWidth": 80, | ||
| "tabWidth": 2, | ||
| "useTabs": false, | ||
| "semi": true, | ||
| "singleQuote": true, | ||
| "jsxSingleQuote": false, | ||
| "trailingComma": "es5", | ||
| "bracketSpacing": true, | ||
| "jsxBracketSameLine": false, | ||
| "arrowParens": "avoid" | ||
| printWidth: 80, | ||
| tabWidth: 2, | ||
| useTabs: false, | ||
| semi: true, | ||
| singleQuote: true, | ||
| jsxSingleQuote: false, | ||
| trailingComma: "es5", | ||
| bracketSpacing: true, | ||
| jsxBracketSameLine: false, | ||
| arrowParens: "avoid" | ||
| } | ||
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something strange with this file 0_o