Skip to content

Rename test apps #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/packages/vscode",
"${workspaceFolder}/test-packages/demo-ember-app",
"${workspaceFolder}/test-packages/demo-glimmerx-app",
"${workspaceFolder}/test-packages/demo-untyped-glimmerx-app"
"${workspaceFolder}/test-packages/ts-ember-app",
"${workspaceFolder}/test-packages/ts-glimmerx-app",
"${workspaceFolder}/test-packages/js-glimmerx-app"
]
}
]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# demo-untyped-glimmerx-app
# js-glimmerx-app

This application is used for development of the Glint language server in an untyped GlimmerX project.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<title>demo-untyped-glimmerx-app</title>
<title>js-glimmerx-app</title>

<link rel="icon" href="./public/favicon.png" />
<link rel="apple-touch-icon" href="./public/logo192.png" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "demo-untyped-glimmerx-app",
"name": "js-glimmerx-app",
"version": "0.0.0",
"description": "A brand new Glimmer app.",
"directories": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"short_name": "demo-glimmerx-app",
"short_name": "js-glimmerx-app",
"name": "A brand new Glimmer app.",
"icons": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>demo-untyped-glimmerx-app Tests</title>
<title>js-glimmerx-app Tests</title>
<link rel="icon" href="../public/favicon.png" />
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# demo-ember-app
# ts-ember-app

This README outlines the details of collaborating on this Ember application.
A short introduction of this app could easily go here.
Expand All @@ -16,7 +16,7 @@ You will need the following things properly installed on your computer.
## Installation

* `git clone <repository-url>` this repository
* `cd demo-ember-app`
* `cd ts-ember-app`
* `yarn install`

## Running / Development
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import loadInitializers from 'ember-load-initializers';
import config from 'demo-ember-app/config/environment';
import config from 'ts-ember-app/config/environment';

export default class App extends Application {
modulePrefix = config.modulePrefix;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
{{content-for "head"}}

<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/demo-ember-app.css">
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/ts-ember-app.css">

{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}

<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/demo-ember-app.js"></script>
<script src="{{rootURL}}assets/ts-ember-app.js"></script>

{{content-for "body-footer"}}
</body>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import EmberRouter from '@ember/routing/router';
import config from 'demo-ember-app/config/environment';
import config from 'ts-ember-app/config/environment';

export default class Router extends EmberRouter {
location = config.locationType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

module.exports = function(environment) {
let ENV = {
modulePrefix: 'demo-ember-app',
podModulePrefix: 'demo-ember-app/pods',
modulePrefix: 'ts-ember-app',
podModulePrefix: 'ts-ember-app/pods',
environment,
rootURL: '/',
locationType: 'auto',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "demo-ember-app",
"name": "ts-ember-app",
"version": "0.3.1",
"private": true,
"description": "Small description for demo-ember-app goes here",
"description": "Small description for ts-ember-app goes here",
"repository": "",
"license": "MIT",
"author": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{{content-for "test-head"}}

<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link rel="stylesheet" href="{{rootURL}}assets/demo-ember-app.css">
<link rel="stylesheet" href="{{rootURL}}assets/ts-ember-app.css">
<link rel="stylesheet" href="{{rootURL}}assets/test-support.css">

{{content-for "head-footer"}}
Expand All @@ -24,7 +24,7 @@
<script src="/testem.js" integrity=""></script>
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/test-support.js"></script>
<script src="{{rootURL}}assets/demo-ember-app.js"></script>
<script src="{{rootURL}}assets/ts-ember-app.js"></script>
<script src="{{rootURL}}assets/tests.js"></script>

{{content-for "body-footer"}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Application from 'demo-ember-app/app';
import config from 'demo-ember-app/config/environment';
import Application from 'ts-ember-app/app';
import config from 'ts-ember-app/config/environment';
import { setApplication } from '@ember/test-helpers';
import { start } from 'ember-qunit';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"module": "es6",
"experimentalDecorators": true,
"paths": {
"demo-ember-app/tests/*": [
"ts-ember-app/tests/*": [
"tests/*"
],
"demo-ember-app/*": [
"ts-ember-app/*": [
"app/*"
],
"*": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Types for compiled templates
declare module 'demo-ember-app/templates/*' {
declare module 'ts-ember-app/templates/*' {
import { TemplateFactory } from 'htmlbars-inline-precompile';
const tmpl: TemplateFactory;
export default tmpl;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# demo-glimmerx-app
# ts-glimmerx-app

This application demonstrates the usage of glint in a GlimmerX project.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>demo-glimmerx-app</title>
<title>ts-glimmerx-app</title>

<link rel="icon" href="./public/favicon.png" />
<link rel="apple-touch-icon" href="./public/logo192.png" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "demo-glimmerx-app",
"name": "ts-glimmerx-app",
"version": "0.3.1",
"description": "A brand new Glimmer app.",
"directories": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"short_name": "demo-untyped-glimmerx-app",
"short_name": "ts-glimmerx-app",
"name": "A brand new Glimmer app.",
"icons": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>demo-glimmerx-app Tests</title>
<title>ts-glimmerx-app Tests</title>
<link rel="icon" href="../public/favicon.png" />
</head>
<body>
Expand Down