Skip to content

Commit

Permalink
Merge pull request #461 from scalvert/add-web-framework-ember
Browse files Browse the repository at this point in the history
Adds Ember as additional web framework
  • Loading branch information
Orta committed Apr 5, 2020
2 parents 91e4c46 + cc649f0 commit b11425c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/sandbox/src/releases.ts
Expand Up @@ -11,7 +11,7 @@ export const supportedReleases = [
"3.0.1",
"2.8.1",
"2.7.2",
"2.4.1"
"2.4.1",
] as const;

export type ReleaseVersions =
Expand Down
1 change: 1 addition & 0 deletions packages/typescriptlang-org/src/copy/en/documentation.ts
Expand Up @@ -24,6 +24,7 @@ export const docCopy = {
doc_frameworks: "Web Frameworks",
doc_frameworks_angular_blurb:
"Makes writing beautiful apps be joyful and fun",
doc_frameworks_ember_blurb: "A framework for ambitious web developers",
doc_frameworks_react_blurb:
"A JavaScript library for building user interfaces",
doc_frameworks_vue_blurb: "The Progressive JavaScript Framework",
Expand Down
1 change: 1 addition & 0 deletions packages/typescriptlang-org/src/copy/zh/documentation.ts
Expand Up @@ -21,6 +21,7 @@ export const docCopy = {
"一个令人愉悦的工具,用于构建由 TypeScript 驱动的命令行应用程序。",
doc_frameworks: "Web 框架",
doc_frameworks_angular_blurb: "让编写优雅的程序充满乐趣",
doc_frameworks_ember_blurb: "雄心勃勃的Web开发人员的框架",
doc_frameworks_react_blurb: "一个用于构建用户界面的 JavaScript 库",
doc_frameworks_vue_blurb: "渐进式 JavaScript 框架",
doc_frameworks_ror_blurb: "约定优于配置的 Web 框架",
Expand Down
12 changes: 6 additions & 6 deletions packages/typescriptlang-org/src/lib/release-info.json
Expand Up @@ -3,24 +3,24 @@
"tags": {
"stableMajMin": "3.8",
"stable": "3.8.3",
"betaMajMin": "3.8",
"beta": "3.8.0-beta",
"betaMajMin": "3.9",
"beta": "3.9.0-beta",
"rc": "3.8.1-rc",
"rcMajMin": "3.8"
},
"isRC": false,
"isBeta": false,
"isBeta": true,
"releaseNotesURL": "/docs/handbook/release-notes/typescript-3-8.html",
"betaPostURL": "https://devblogs.microsoft.com/typescript/announcing-typescript-3-8-beta/",
"betaPostURL": "https://devblogs.microsoft.com/typescript/announcing-typescript-3-9-beta/",
"rcPostURL": "https://devblogs.microsoft.com/typescript/announcing-typescript-3-8-rc/",
"vs": {
"stable": {
"vs2017_download": "https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.typescript-38beta",
"vs2019_download": "https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.typescript-38beta"
},
"beta": {
"vs2017_download": "https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.typescript-38beta",
"vs2019_download": "https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.typescript-38beta"
"vs2017_download": "https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.typescript-373",
"vs2019_download": "https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.typescript-373"
},
"rc": {
"vs2017_download": "https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.typescript-38beta",
Expand Down
Expand Up @@ -85,6 +85,11 @@ const Index: React.FC<Props> = (props) => {
blurb: i("doc_frameworks_angular_blurb"),
title: "Angular",
},
{
href: "https://ember-cli-typescript.com",
blurb: i("doc_frameworks_ember_blurb"),
title: "Ember",
},
{
href: "https://reactjs.org",
badge: "Examples below",
Expand Down Expand Up @@ -270,7 +275,6 @@ const Index: React.FC<Props> = (props) => {
)
}


export const query = graphql`
query DocsHome {
...AllSitePage
Expand Down

0 comments on commit b11425c

Please sign in to comment.