X Tutup
Skip to content

Commit e4e74ae

Browse files
committed
chore: rename modules/examples to modules/playground
The directory contains code authored in a style that makes it transpilable to dart. As such, these are not idiomatic examples of Angular 2 usage. The main purpose of this directory is to enable experimentation with Angular within the angular/angular repository. Closes angular#4342 Closes angular#4639
1 parent c3ab20c commit e4e74ae

File tree

248 files changed

+190
-190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+190
-190
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ function proxyServeDart() {
352352
return jsserve(gulp, gulpPlugins, {
353353
port: 8002,
354354
proxies: [
355-
{route: '/examples', url: 'http://localhost:8004'},
355+
{route: '/playground', url: 'http://localhost:8004'},
356356
{route: '/benchmarks_external', url: 'http://localhost:8008'},
357357
{route: '/benchmarks', url: 'http://localhost:8006'}
358358
]
@@ -393,7 +393,7 @@ gulp.task('serve.dart', function(done) {
393393

394394
gulp.task('serve/examples.dart', pubserve(gulp, gulpPlugins, {
395395
command: DART_SDK.PUB,
396-
path: CONFIG.dest.dart + '/examples',
396+
path: CONFIG.dest.dart + '/playground',
397397
port: 8004
398398
}));
399399

modules/benchpress/test/firefox_extension/sample_benchmark.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var runner = new benchpress.Runner([
1414
describe('deep tree baseline', function() {
1515
it('should be fast!', function(done) {
1616
browser.ignoreSynchronization = true;
17-
browser.get('http://localhost:8001/examples/src/benchpress/');
17+
browser.get('http://localhost:8001/playground/src/benchpress/');
1818

1919
/*
2020
* Tell benchpress to click the buttons to destroy and re-create the tree for each sample.

modules/benchpress/test/firefox_extension/spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var assertEventsContainsName = function(events, eventName) {
1414
};
1515

1616
describe('firefox extension', function() {
17-
var TEST_URL = 'http://localhost:8001/examples/src/hello_world/index.html';
17+
var TEST_URL = 'http://localhost:8001/playground/src/hello_world/index.html';
1818

1919
it('should measure performance', function() {
2020
browser.sleep(3000); // wait for extension to load

modules/examples/e2e_test/async/async_spec.dart

Lines changed: 0 additions & 3 deletions
This file was deleted.

modules/examples/e2e_test/hello_world/hello_world_spec.dart

Lines changed: 0 additions & 3 deletions
This file was deleted.

modules/examples/e2e_test/http/http_spec.dart

Lines changed: 0 additions & 3 deletions
This file was deleted.

modules/examples/e2e_test/jsonp/jsonp_spec.dart

Lines changed: 0 additions & 3 deletions
This file was deleted.

modules/examples/e2e_test/key_events/key_events_spec.dart

Lines changed: 0 additions & 3 deletions
This file was deleted.

modules/examples/e2e_test/material/button_spec.dart

Lines changed: 0 additions & 3 deletions
This file was deleted.

modules/examples/e2e_test/material/checkbox_spec.dart

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)
X Tutup