Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
112b418
add beginnings to cli overhaul
mgmarlow Jan 7, 2018
380539a
add chalk, config file reading
mgmarlow Jan 7, 2018
7299712
revamp configuration implementation
mgmarlow Jan 7, 2018
28e4755
add test infrastructure
mgmarlow Jan 7, 2018
68ff2b5
add string builder tests
mgmarlow Jan 7, 2018
0811634
add config file tests
mgmarlow Jan 7, 2018
69cc522
transfer build script
mgmarlow Jan 7, 2018
a791106
add serve and watch
mgmarlow Jan 8, 2018
788af7b
app restructure
mgmarlow Jan 8, 2018
6bcdc32
migrate the rest of the configuration args, remove deprecated
mgmarlow Jan 8, 2018
99f97c9
remove deprecated
mgmarlow Jan 8, 2018
049b7d7
add check-errors utility
mgmarlow Jan 8, 2018
212c5b4
remove unnecessary package
mgmarlow Jan 8, 2018
c5f9273
reconfigure imports
mgmarlow Jan 8, 2018
7d8c93b
remove check-errors utility
Jan 8, 2018
6282515
use default node exports for sandbox files
Jan 8, 2018
95ce575
add latest version of check sandbox plugin
Jan 8, 2018
cd9f18c
integrate verify-sandboxes script
Jan 9, 2018
31d8131
grab random port for builds
Jan 9, 2018
8d3b8a3
fix path resolution
Jan 9, 2018
c5ce2d7
add back command line options for sandbox verification
Jan 9, 2018
2ed49be
migreate angular application items into core/ directory
Jan 9, 2018
b47e28a
fix negated boolean args
Jan 9, 2018
083a83f
nest cli and core under same package name
Jan 9, 2018
132ef03
update changelog, move under angular playground
Jan 9, 2018
2de7d73
changelog improvements
Jan 9, 2018
5c1d222
Merge pull request #80 from mgmarlow/cli-overhaul
lurock Jan 10, 2018
a0d9e99
3.3.0
lurock Jan 10, 2018
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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist/
/build/
/packages/angular-playground/dist/
/packages/angular-playground/build/
/src/**/*.ngfactory.ts
*.ngsummary.json

Expand Down
2 changes: 2 additions & 0 deletions KUDOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@

* Thanks goes out for the awesome fuzzy search code by [Nicolás Bevacqua](https://twitter.com/nzgb)
<https://github.com/bevacqua/fuzzysearch>

* Thanks goes out for Windows/Unix path normalization from <https://github.com/sindresorhus/slash>
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
# Playground for Angular
[![npm version](https://badge.fury.io/js/angular-playground.svg)](https://badge.fury.io/js/angular-playground)

# Angular Playground

A drop in entry module for your app to develop Angular components, directives and pipes
in isolation (aka Scenario Driven Development).

> For Angular version 2.x and up
> For Angular 5.x and up

Playground is designed to run within your existing application, and takes advantage of
your build system to build your components, directives and pipes.

### For setup and documentation visit:

### <http://www.angularplayground.it>
(Angular CLI Schematics are on the way!)


### For the latest changes visit:
[Changelog](/CHANGELOG.md)
[Playground Changelog](/packages/angular-playground/CHANGELOG.md)
176 changes: 176 additions & 0 deletions examples/cli-example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions examples/cli-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"playground": "node ./node_modules/angular-playground/dist/bin/cli.js",
"playground:build": "npm run build --prefix ../../ && node ../../scripts/copy.js && npm run playground"
"playground": "node ./node_modules/angular-playground/dist/bin/index.js",
"playground:check": "node ./node_modules/angular-playground/dist/bin/index.js --check-errors",
"playground:build": "npm run build --prefix ../../packages/angular-playground/ && node ../../packages/angular-playground/scripts/copy.js && npm run playground",
"check-errors": "node ./node_modules/angular-playground/dist/bin/index.js --verify"
},
"private": true,
"dependencies": {
Expand Down
5 changes: 0 additions & 5 deletions index.ts

This file was deleted.

Loading