159 Commits

Author SHA1 Message Date
jkuri
5f7336b9d5 feat(css): broccoli less plugin 2016-04-05 19:27:23 +02:00
jkuri
e9cebaa356 feat(css): broccoli sass plugin 2016-04-05 19:27:23 +02:00
Mike Brocchi
a5ddd75f3f feat: adds client dir between src and app
Adds a directory layer in preparation for following the style guide in the blueprints
Updates to templates, tests and build process
Related to #316
2016-04-04 23:37:14 -04:00
Ciro Nunes
a0589969f5 feat(build production): introduce the production build
Closes #41
2016-04-04 00:22:37 +02:00
Hans Larsen
25aeba77bd fix: the manifest paths should not include the root 2016-03-31 11:28:33 -07:00
Hans Larsen
cc578dbc12 fix: if there's no public/ directory, do not merge it in build 2016-03-31 11:08:09 -07:00
Hans Larsen
edc038ff9b fix: on error builds an error was thrown because of duped files. 2016-03-30 21:37:45 -07:00
chrisramsey
0f7134ce38 feat: adds public folder
Close #368
2016-03-30 04:09:06 +02:00
Hans Larsen
62ea1f2b11 fix: regenerate the program on file change, and only once per rerun 2016-03-29 17:11:37 -07:00
Hans Larsen
8b6e80cb26 build: refactor the typescript compiler broccoli plugin 2016-03-28 12:41:20 -07:00
zackarychapple
7ba8b394b0 feat(formatting): adding editor config, adding eslint and tslint config. 2016-03-24 22:02:42 -04:00
jkuri
6fa059be26 chore(): update ember-cli to 2.4.2 2016-03-24 20:13:03 +01:00
Hans Larsen
1819afe3c9 build: Update the broccoli scripts to 1.0 2016-03-22 12:00:58 -07:00
jkuri
cae13707db feat(builder): broccoli bump to 1.0 2016-03-20 19:43:54 -07:00
Mike Brocchi
f2f5ff9250 fix(paths): fix the determination of execution path
Windows does not populate  this fix allows for determination
of the directory from which an ng command was executed
Fixes #297
2016-03-17 22:59:35 -04:00
Igor Minar
19774b9898 fix(build): compile source files from within the src/ directory
We need to preserve the paths to be the same during build as they are in source repo,
so that editor and build pipeline are aligned.
2016-03-17 16:23:54 -07:00
Igor Minar
3bcacb6ce6 fix: read compilation roots from the tsconfig.json#files 2016-03-17 16:23:54 -07:00
Igor Minar
e30629c365 fix(build): correctly compile source files against typings
It looks like previously we were grabbing typings from outside of the tmp/ directory.
If this ever worked, it worked only by accident.
2016-03-17 16:23:54 -07:00
Hans Larsen
e122062c3a chore(): allow the CLI tool itself to use TypeScript.
This does not work for the Broccoli (yet).
2016-03-16 12:57:12 -07:00
Filipe Silva
854650eea6 fix(service-worker): fix manifest path separator
Fix #251
2016-02-27 13:06:35 +00:00
Mike Brocchi
239c76534e chore(bug): improved the ember to angular regex
The regex was ovewriting a URL on ng version
Fixes #203
2016-02-22 20:43:44 -05:00
Hans Larsen
59ca775429 chore(): remove the concatenating of vendor files. 2016-02-19 16:15:40 -08:00
Alex Rickabaugh
0228140d02 feat: Generate an AppCache/ServiceWorker manifest during the build step, from all of the resources in the output directory. 2016-02-19 10:17:18 -08:00
chapplez
a6fe73702e build(): Bumping broccoli version as well as updating tool compilations and maps. 2016-02-17 12:36:31 -08:00
Hans Larsen
877c4f62ee fix(build): if no options were passed in, do not throw an exception. 2016-02-16 10:27:58 -08:00
Hans Larsen
69fc1f2503 fix(): Typings now at the correct place. 2016-02-10 13:58:17 -08:00
Hans Larsen
e238e328f7 feat(): add typings to the blueprints. 2016-02-09 13:36:00 -08:00
jkuri
f751830e14 fix(vendor): fixed broccoli concat for vendor files 2016-02-06 00:33:35 +01:00
jkuri
10eb75c19c fix(vendors): reorder vendor libraries to work properly with routes 2016-02-03 08:48:16 +01:00
jkuri
1a5646631a chore(commands): ember-cli branding leaks through many error messages and help text
Close #157
2016-02-01 20:52:41 +00:00
Ciro Nunes
2efc9a150f fix(vendors): concat the files properly 2016-01-31 12:17:32 -02:00
jkuri
b8dfe0c414 fix(libs): 3rd party library install fixes
Close #160
2016-01-31 13:07:40 +00:00
Ciro Nunes
acaaa3ea4b feat(angular2-app): allow to easily add vendor files
to be able to easily add vendor files in generated projects:

var Angular2App = require('angular-cli/lib/broccoli/angular2-app');

module.exports = function(defaults) {
  var app = new Angular2App(defaults, {
    vendorFiles: ['material-design-lite/material.css']
  });
  return app.toTree();
}

Close #123
2016-01-31 12:58:47 +00:00
Igor Minar
76ade53621 chore: extra broccoli plugins from angular/angular
the most interesting and the one we need for improving the testing story is the broccoli-dest-copy plugin - this enables #87

these plugins were built at the same time as broccoli-typescript plugin updated in 563e6e2cd2c72604caff59be50ac0bfe7e02404e

Close #109
2016-01-28 20:44:00 +00:00
jkuri
019514681d feat(libs) 3rd party lib helper 2016-01-25 17:48:47 +01:00
Hans Larsen
5919df4b9c bug(): Adding es6 shims and system polyfills. Those are required by IE. 2016-01-24 12:26:45 -08:00
jkuri
f6fb816a54 feat(build): add desktop notifications 2016-01-24 03:09:45 +01:00
Igor Minar
5e9f34bd20 feat: update blueprints and broccoli config to angular2@2.0.0-alpha.54
Closes #108
2015-12-15 04:50:24 -08:00
Igor Minar
563e6e2cd2 feat: update to angular2@2.0.0-alpha.52 and typescript@1.7.3 2015-12-10 03:13:50 -08:00
Igor Minar
04a4bbbfde fix: bump version of the broccoli-typescript plugin to angular/angular@cf7292f
Closes #59
2015-11-22 07:53:23 -08:00
Igor Minar
2e3cb4549c fix(build): exclude tsconfig.json from the build output 2015-10-19 23:18:04 +01:00
Igor Minar
80882ce958 fix: remove broccoli-stew import 2015-10-18 22:42:48 +01:00
Igor Minar
c57d70e1c0 fix(broccoli): tune the build graph, support any asset file 2015-10-18 18:31:43 +01:00
Igor Minar
4727ebe004 feat(blueprint): transition from Brocfile.js to ember-cli-build.js
This removes the deprecation warning. yay!
2015-10-15 22:35:40 -07:00
Igor Minar
3f3801de87 feat: Angular 2 alpha.44, broccoli-typescript update, source maps 2015-10-15 22:15:55 -07:00
Igor Minar
f0649b2fea feat: make compatible with Angular 2 alpha.42 + cleanup + tsc update
- updated blueprints to be compatible with alpha 42
- updated broccoli-typescript
- updated tsc to 1.6.2
- removed all tsd stuff, we now pull typings directly from node_modules/angular2
- moved tsc configuration to tsconfig.json
- configured SystemJS
- removed concat step from broccoli pipeline, SystemJS now fetches individual files
- removed traceur-runtime - we no longer need it
- other small tweaks and cleanup
2015-10-15 00:14:31 -07:00
rodyhaddad
9935ffb08c tests(commands): add acceptance test for new and init command
Closes #9
2015-09-01 19:11:10 +03:00
rodyhaddad
f2d1ec3f7c feat(build): concat all src files into app.js and transpile them as SystemJS
Closes #33
2015-08-27 19:09:21 +03:00
rodyhaddad
4c2d0bb1e9 chore(broccoli-typescript): update broccoli-typescript plugin to latest version from angular/angular repo 2015-07-23 00:33:51 +03:00
rodyhaddad
d6c9cf9272 chore(*): change name from wrenchjs to angular-cli 2015-06-18 20:30:39 +02:00