Skip to content

Commit 60536e7

Browse files
committed
The package readme wasn't updated
1 parent dee65f6 commit 60536e7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

dist/npm/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ignite UI components for Angular
22

3-
Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular2).
3+
Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular-wrappers).
44

55
# Requirements
66

@@ -13,8 +13,8 @@ Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http:/
1313
To run the samples, you need [Node.js](http://nodejs.org/) installed on your machine.
1414
Afterwards, from your terminal run the following commands:
1515

16-
1. `git clone https://github.com/IgniteUI/igniteui-angular2`
17-
2. `cd igniteui-angular2`
16+
1. `git clone https://github.com/IgniteUI/igniteui-angular-wrappers`
17+
2. `cd igniteui-angular-wrappers`
1818
3. `npm install`
1919
4. `npm start`
2020

@@ -318,7 +318,7 @@ As a starting point, you can review the [Angular documentation on the subject](h
318318
Once you have a running application compiled with AOT, the next step is to add the Ignite UI Components into this app. In this demo IgComboComponent is being added to the app, igCombo is an OSS widget and it is part of the ignite-ui npm package.
319319
First we need to install the required packages:
320320
- `npm install ignite-ui`
321-
- `npm install igniteui-angular2`
321+
- `npm install igniteui-angular-wrappers`
322322
- `npm install jquery-ui-bundle`
323323

324324
**Note**: You have to download the full Ignite UI product if you would like to use widgets which are not part of the OSS widgets. This is a [list](https://github.com/IgniteUI/ignite-ui#available-features-in-ignite-ui-open-source-version) of the controls available in the Open-source version
@@ -334,19 +334,19 @@ Then go to the app module and import the combo - `import 'ignite-ui/js/modules/i
334334

335335
In addition, at the end import the IgniteUIModule:
336336

337-
import { IgniteUIModule } from 'igniteui-angular2';
337+
import { IgniteUIModule } from 'igniteui-angular-wrappers';
338338
@NgModule({
339339
imports: [ BrowserModule, IgniteUIModule ],
340340
341341
})
342342
export class AppModule {}
343343

344344
In order to take advantage of the [Tree shaking](https://angular.io/docs/ts/latest/cookbook/aot-compiler.html#!#tree-shaking) the Rollup has to be set up.
345-
Open rollup-config.js, include igniteui-angular2 to `commonjs` plugin and add `namedExport` for jquery:
345+
Open rollup-config.js, include igniteui-angular-wrappers to `commonjs` plugin and add `namedExport` for jquery:
346346

347347
commonjs({
348348
include: ['node_modules/rxjs/**',
349-
'node_modules/igniteui-angular2/**',
349+
'node_modules/igniteui-angular-wrappers/**',
350350
],
351351
namedExports: {
352352
'node_modules/jquery/dist/jquery.min.js': [ 'jquery' ]
@@ -390,7 +390,7 @@ Open rollup-config.js file and import postcss:
390390
}),
391391

392392

393-
[Download](https://github.com/IgniteUI/igniteui-angular2/files/975676/quickstart-igniteui-angular2-aot.zip) the modified app which uses the specified product. To run it with AOT:
393+
[Download](https://github.com/IgniteUI/igniteui-angular-wrappers/files/975676/quickstart-igniteui-angular-wrappers-aot.zip) the modified app which uses the specified product. To run it with AOT:
394394
1. npm install
395395
2. npm run build:aot
396396
3. npm run serve

0 commit comments

Comments
 (0)