Skip to content
This repository was archived by the owner on Feb 6, 2023. It is now read-only.

Commit 0b57720

Browse files
mrkevfacebook-github-bot
authored andcommitted
Upgrade dependencies in /website (#2263)
Summary: This should address a security vulnerability stemming from `braces < 2.3.1`. Before: ``` npm ls braces .../website └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └── [email protected] ``` After: ``` npm ls braces .../website └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] ├─┬ [email protected] │ └── [email protected] └─┬ [email protected] └── [email protected] deduped ``` Pull Request resolved: #2263 Test Plan: Ran website, everything looks fine. Differential Revision: D18725548 Pulled By: mrkev fbshipit-source-id: 6e674d2426b73587c0c9b1340042998702770d51
1 parent ae2dd14 commit 0b57720

File tree

3 files changed

+3804
-2306
lines changed

3 files changed

+3804
-2306
lines changed

website/i18n/en.json

Lines changed: 101 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,107 @@
44
"next": "Next",
55
"previous": "Previous",
66
"tagline": "Rich Text Editor Framework for React",
7-
"advanced-topics-block-components": "Custom Block Components",
8-
"advanced-topics-block-styling": "Block Styling",
9-
"advanced-topics-custom-block-render-map": "Custom Block Rendering",
10-
"advanced-topics-decorators": "Decorators",
11-
"advanced-topics-editorstate-race-conditions": "EditorState Race Conditions",
12-
"advanced-topics-entities": "Entities",
13-
"advanced-topics-inline-styles": "Complex Inline Styles",
14-
"advanced-topics-issues-and-pitfalls": "Issues and Pitfalls",
15-
"advanced-topics-key-bindings": "Key Bindings",
16-
"advanced-topics-managing-focus": "Managing Focus",
17-
"advanced-topics-nested-lists": "Nested Lists",
18-
"advanced-topics-text-direction": "Text Direction",
19-
"v0-10-api-migration": "v0.10 API Migration",
20-
"api-reference-atomic-block-utils": "AtomicBlockUtils",
21-
"api-reference-character-metadata": "CharacterMetadata",
22-
"api-reference-composite-decorator": "CompositeDecorator",
23-
"api-reference-content-block": "ContentBlock",
24-
"api-reference-content-state": "ContentState",
25-
"api-reference-data-conversion": "Data Conversion",
26-
"api-reference-editor": "Editor Component",
27-
"api-reference-editor-change-type": "EditorChangeType",
28-
"api-reference-editor-state": "EditorState",
29-
"api-reference-entity": "Entity",
30-
"api-reference-key-binding-util": "KeyBindingUtil",
31-
"api-reference-modifier": "Modifier",
32-
"api-reference-rich-utils": "RichUtils",
33-
"api-reference-selection-state": "SelectionState",
34-
"getting-started": "Overview",
35-
"quickstart-api-basics": "API Basics",
36-
"quickstart-rich-styling": "Rich Styling",
37-
"Docs": "Docs",
38-
"GitHub": "GitHub",
39-
"Quick Start": "Quick Start",
40-
"Advanced Topics": "Advanced Topics",
41-
"API Reference": "API Reference"
7+
"docs": {
8+
"advanced-topics-block-components": {
9+
"title": "Custom Block Components"
10+
},
11+
"advanced-topics-block-styling": {
12+
"title": "Block Styling"
13+
},
14+
"advanced-topics-custom-block-render-map": {
15+
"title": "Custom Block Rendering"
16+
},
17+
"advanced-topics-decorators": {
18+
"title": "Decorators"
19+
},
20+
"advanced-topics-editorstate-race-conditions": {
21+
"title": "EditorState Race Conditions"
22+
},
23+
"advanced-topics-entities": {
24+
"title": "Entities"
25+
},
26+
"advanced-topics-inline-styles": {
27+
"title": "Complex Inline Styles"
28+
},
29+
"advanced-topics-issues-and-pitfalls": {
30+
"title": "Issues and Pitfalls"
31+
},
32+
"advanced-topics-key-bindings": {
33+
"title": "Key Bindings"
34+
},
35+
"advanced-topics-managing-focus": {
36+
"title": "Managing Focus"
37+
},
38+
"advanced-topics-nested-lists": {
39+
"title": "Nested Lists"
40+
},
41+
"advanced-topics-text-direction": {
42+
"title": "Text Direction"
43+
},
44+
"v0-10-api-migration": {
45+
"title": "v0.10 API Migration"
46+
},
47+
"api-reference-atomic-block-utils": {
48+
"title": "AtomicBlockUtils"
49+
},
50+
"api-reference-character-metadata": {
51+
"title": "CharacterMetadata"
52+
},
53+
"api-reference-composite-decorator": {
54+
"title": "CompositeDecorator"
55+
},
56+
"api-reference-content-block": {
57+
"title": "ContentBlock"
58+
},
59+
"api-reference-content-state": {
60+
"title": "ContentState"
61+
},
62+
"api-reference-data-conversion": {
63+
"title": "Data Conversion"
64+
},
65+
"api-reference-editor": {
66+
"title": "Editor Component"
67+
},
68+
"api-reference-editor-change-type": {
69+
"title": "EditorChangeType"
70+
},
71+
"api-reference-editor-state": {
72+
"title": "EditorState"
73+
},
74+
"api-reference-entity": {
75+
"title": "Entity"
76+
},
77+
"api-reference-key-binding-util": {
78+
"title": "KeyBindingUtil"
79+
},
80+
"api-reference-modifier": {
81+
"title": "Modifier"
82+
},
83+
"api-reference-rich-utils": {
84+
"title": "RichUtils"
85+
},
86+
"api-reference-selection-state": {
87+
"title": "SelectionState"
88+
},
89+
"getting-started": {
90+
"title": "Overview"
91+
},
92+
"quickstart-api-basics": {
93+
"title": "API Basics"
94+
},
95+
"quickstart-rich-styling": {
96+
"title": "Rich Styling"
97+
}
98+
},
99+
"links": {
100+
"Docs": "Docs",
101+
"GitHub": "GitHub"
102+
},
103+
"categories": {
104+
"Quick Start": "Quick Start",
105+
"Advanced Topics": "Advanced Topics",
106+
"API Reference": "API Reference"
107+
}
42108
},
43109
"pages-strings": {
44110
"Help Translate|recruit community translators for your project": "Help Translate",

website/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"rename-version": "docusaurus-rename-version"
1010
},
1111
"devDependencies": {
12-
"docusaurus": "1.3.3"
12+
"docusaurus": "1.14.2"
1313
},
1414
"dependencies": {
15-
"babel-preset-env": "1.6.0",
15+
"babel-preset-env": "1.7.0",
1616
"babel-preset-react": "6.24.1",
17-
"react": "16.3.2"
17+
"react": "16.12.0"
1818
}
1919
}

0 commit comments

Comments
 (0)