I have the ionic v2 docs locally. GitHub - ionic-team/ionic-site: Repo for the ionicframework.com site
I have changes I wish to propose, namely, https://github.com/driftyco/ionic/blob/2.0/ionic/decorators/page.ts#L38-L43
Since the app has already been bootstrapped with Ionic’s core directives, it
is not needed to includeIONIC_DIRECTIVESin the directives property. Additionally,
Angular’s CORE_DIRECTIVES
and FORM_DIRECTIVES,
are also already provided, so you only need to supply any custom components and directives
to your pages:
The above statement isn’t true. Without doing import { FORM_DIRECTIVES } from 'angular2/common, I am slapped with a app.bundle.js:95 Uncaught ReferenceError: FORM_DIRECTIVES is not defined error in browser console.
Now to the actual question. How do I make changes to the ionic site documentations, if the actual documentation is in the source codes? Will that involve adding the change to Ionic source code so that it is propagated to docs, then I update my local build to reflect the change or how?
I’m new to contributing to this, so happy to be enlightened. I hope this was the right place to ask.
My system information:
Cordova CLI: 6.1.1
Gulp version: CLI version 3.9.1
Gulp local: Local version 3.9.1
Ionic Framework Version: 2.0.0-beta.6
Ionic CLI Version: 2.0.0-beta.25
Ionic App Lib Version: 2.0.0-beta.15
Node Version: v5.11.1
