This repository has been archived by the owner on Apr 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
735 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
* text eol=lf | ||
*.png binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- | ||
- STOP! Are you trying to get help? If so, read here: | ||
Thanks for your interest in angular-formly. If you're | ||
filing this issue to get help, please follow the | ||
instructions at help.angular-formly.com | ||
The GitHub issues on this project are reserved | ||
for feature requests and bug reports. So if you | ||
file an issue looking for help, it will be closed | ||
and you'll be invited to follow the instructions | ||
at help.angular-formly.com. | ||
It's nothing personal. It's just hard to manage | ||
the project otherwise! | ||
- Filing a bug or feature request? | ||
If you'd like to report what you think is a bug or | ||
a feature request, please follow the instructions | ||
at issue.angular-formly.com to file your issue. | ||
Thanks for your contribution! | ||
--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!-- | ||
Thanks for your contribution! | ||
Unless this is a really small and insignificant change, | ||
please make sure that we've discussed it first in | ||
the issues. | ||
--> | ||
|
||
## What | ||
|
||
<!-- explain what is being done here --> | ||
|
||
## Why | ||
|
||
<!-- explain why it's necessary --> | ||
|
||
## How | ||
|
||
<!-- explain how you did it --> | ||
|
||
For issue # <!-- put your issue number here --> | ||
|
||
Checklist: | ||
|
||
* [ ] Follows the commit message [conventions](https://github.com/stevemao/conventional-changelog-angular/blob/master/convention.md) | ||
* [ ] Is [rebased with master](https://egghead.io/lessons/javascript-how-to-rebase-a-git-pull-request-branch?series=how-to-contribute-to-an-open-source-project-on-github) | ||
* [ ] Is [only one (maybe two) commits](https://egghead.io/lessons/javascript-how-to-squash-multiple-git-commits) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const gulp = require('gulp') | ||
const replace = require('gulp-replace') | ||
|
||
// bump npm package version into package.js | ||
gulp.task('meteor', function() { | ||
const pkg = require('./package.json') | ||
const versionRegex = /(version\:\s*\')([^\']+)\'/gi | ||
|
||
return gulp.src('package.js') | ||
.pipe(replace(versionRegex, '$1' + pkg.version + "'")) | ||
.pipe(gulp.dest('./')) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* global Package:false */ | ||
// package metadata file for AtmosphereJS | ||
|
||
try { | ||
Package.describe({ | ||
name: 'formly:angular-formly', | ||
summary: 'angular-formly (official): forms for AngularJS', | ||
version: '0.0.0-semantically-released.0', | ||
git: 'https://github.com/formly-js/angular-formly.git', | ||
}) | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom(['METEOR@1.0']) | ||
// api-check | ||
api.use('wieldo:api-check@7.5.5') | ||
api.imply('wieldo:api-check') | ||
// angular | ||
api.use('angular:angular@1.4.0') | ||
api.addFiles('dist/formly.js', 'client') | ||
}) | ||
} catch (e) { | ||
// | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.