Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added option for using a namespace in the standard runner #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
27 changes: 0 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,33 +225,6 @@ Location of a custom template file for creating the output configuration file. D

## Examples

### Multiple Environments

_**config.json**_
```json
{
"development": { "greeting": "Sup!" },
"production": { "greeting": "Hello" }
}
```

_**gulpfile.js**_
```javascript
var gulp = require('gulp');
var ngConstant = require('gulp-ng-constant');

gulp.task('constants', function () {
var myConfig = require('./config.json');
var envConfig = myConfig[process.env];
return ngConstant({
constants: envConfig,
stream: true
})
.pipe(gulp.dest('dist'));
});

```

### Stream

```javascript
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ function ngConstantPlugin(opts) {

try {
var data = file.isNull() ? {} : yaml.safeLoad(file.contents);


data = options.namespace ? data[options.namespace] : data;

// Create the module string
var result = _.template(template)({
moduleName: getModuleName(data, options, file),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-ng-constant",
"version": "1.1.0",
"version": "1.1.1",
"description": "Gulp plugin for dynamic generation of angular constant modules.",
"main": "index.js",
"repository": {
Expand Down