assemble-core
Advanced tools
Comparing version 0.10.0 to 0.11.0
@@ -29,3 +29,3 @@ 'use strict'; | ||
Templates.call(this, options); | ||
this.name || 'assemble'; | ||
this.name = 'assemble'; | ||
@@ -32,0 +32,0 @@ /** |
{ | ||
"name": "assemble-core", | ||
"description": "The core assemble application with no presets or defaults. All configuration is left to the implementor.", | ||
"version": "0.10.0", | ||
"version": "0.11.0", | ||
"homepage": "https://github.com/assemble/assemble-core", | ||
@@ -34,3 +34,3 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)", | ||
"assemble-streams": "^0.4.0", | ||
"base-tasks": "^0.2.0", | ||
"base-tasks": "^0.3.0", | ||
"lazy-cache": "^1.0.3", | ||
@@ -42,3 +42,3 @@ "templates": "^0.11.0" | ||
"buffer-equal": "^1.0.0", | ||
"consolidate": "^0.13.1", | ||
"consolidate": "^0.14.0", | ||
"coveralls": "^2.11.6", | ||
@@ -54,3 +54,3 @@ "define-property": "^0.2.5", | ||
"gulp-format-md": "^0.1.5", | ||
"gulp-git": "^1.6.1", | ||
"gulp-git": "^1.7.0", | ||
"gulp-istanbul": "^0.10.3", | ||
@@ -63,8 +63,8 @@ "gulp-mocha": "^2.2.0", | ||
"minimist": "^1.2.0", | ||
"mocha": "^2.3.4", | ||
"mocha": "*", | ||
"parser-front-matter": "^1.3.0", | ||
"resolve-glob": "^0.1.8", | ||
"rimraf": "^2.5.0", | ||
"should": "^8.1.1", | ||
"sinon": "^1.17.2", | ||
"rimraf": "^2.5.1", | ||
"should": "*", | ||
"sinon": "^1.17.3", | ||
"swig": "^1.4.2", | ||
@@ -118,8 +118,2 @@ "through2": "^2.0.0", | ||
], | ||
"lintDeps": { | ||
"ignore": [ | ||
"examples", | ||
"docs" | ||
] | ||
}, | ||
"verb": { | ||
@@ -141,13 +135,29 @@ "related": { | ||
"reflinks": [ | ||
"<%= Object.keys(dependencies) %>", | ||
"<%= related.list %>", | ||
"assemble", | ||
"assemble-cli", | ||
"assemble-fs", | ||
"assemble-render-file", | ||
"assemble-streams", | ||
"base-methods", | ||
"base-tasks", | ||
"base-watch", | ||
"boilerplate", | ||
"composer", | ||
"emitter-only", | ||
"generate", | ||
"gulp", | ||
"handlebars", | ||
"lazy-cache", | ||
"scaffold", | ||
"templates", | ||
"verb", | ||
"vinyl-fs" | ||
] | ||
}, | ||
"lintDeps": { | ||
"ignore": [ | ||
"examples", | ||
"docs" | ||
] | ||
} | ||
} |
@@ -274,3 +274,3 @@ # assemble-core [![NPM version](https://img.shields.io/npm/v/assemble-core.svg)](https://www.npmjs.com/package/assemble-core) [![Build Status](https://img.shields.io/travis/assemble/assemble-core.svg)](https://travis-ci.org/assemble/assemble-core) | ||
* [boilerplate](https://www.npmjs.com/package/boilerplate): Tools and conventions for authoring and publishing boilerplates that can be generated by any build… [more](https://www.npmjs.com/package/boilerplate) | [homepage](http://boilerplates.io) | ||
* [composer](https://www.npmjs.com/package/composer): API-first task runner with three methods: task, run and watch. | [homepage](https://github.com/jonschlinkert/composer) | ||
* [composer](https://www.npmjs.com/package/composer): API-first task runner with three methods: task, run and watch. | [homepage](https://github.com/doowb/composer) | ||
* [generate](https://www.npmjs.com/package/generate): Fast, composable, highly extendable project generator with a user-friendly and expressive API. | [homepage](https://github.com/generate/generate) | ||
@@ -299,2 +299,6 @@ * [scaffold](https://www.npmjs.com/package/scaffold): Conventions and API for creating declarative configuration objects for project scaffolds - similar in format… [more](https://www.npmjs.com/package/scaffold) | [homepage](https://github.com/jonschlinkert/scaffold) | ||
**v0.9.0** | ||
* Updates [composer](https://github.com/jonschlinkert/composer) to v0.11.0, which removes the `.watch` method in favor of using the [base-watch](https://github.com/node-base/base-watch) plugin. | ||
**v0.8.0** | ||
@@ -337,2 +341,2 @@ | ||
_This file was generated by [verb](https://github.com/verbose/verb) on January 21, 2016._ | ||
_This file was generated by [verb](https://github.com/verbose/verb) on January 29, 2016._ |
17
utils.js
@@ -8,14 +8,2 @@ 'use strict'; | ||
var utils = require('lazy-cache')(require); | ||
/** | ||
* Temporarily re-assign `require` to trick browserify and | ||
* webpack into reconizing lazy dependencies. | ||
* | ||
* This tiny bit of ugliness has the huge dual advantage of | ||
* only loading modules that are actually called at some | ||
* point in the lifecycle of the application, whilst also | ||
* allowing browserify and webpack to find modules that | ||
* are depended on but never actually called. | ||
*/ | ||
var fn = require; | ||
@@ -32,7 +20,2 @@ require = utils; | ||
require('base-tasks', 'tasks'); | ||
/** | ||
* Restore `require` | ||
*/ | ||
require = fn; | ||
@@ -39,0 +22,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
339
0
15784
64
+ Addedbach@0.5.0(transitive)
+ Addedbase-tasks@0.3.0(transitive)
+ Addedcomposer@0.11.4(transitive)
+ Addedis-generator@1.0.3(transitive)
+ Addedlodash.filter@4.6.0(transitive)
+ Addedlodash.flatten@4.4.0(transitive)
+ Addedlodash.foreach@4.5.0(transitive)
+ Addedlodash.initial@4.1.1(transitive)
+ Addedlodash.last@3.0.0(transitive)
+ Addedlodash.map@4.6.0(transitive)
+ Addedsafe-buffer@5.2.1(transitive)
+ Addedstring_decoder@1.3.0(transitive)
- Removedanymatch@1.3.2(transitive)
- Removedarr-diff@4.0.0(transitive)
- Removedarray-unique@0.3.2(transitive)
- Removedasync-each@1.0.6(transitive)
- Removedatob@2.1.2(transitive)
- Removedbach@0.4.2(transitive)
- Removedbase@0.11.2(transitive)
- Removedbase-tasks@0.2.0(transitive)
- Removedbinary-extensions@1.13.1(transitive)
- Removedbindings@1.5.0(transitive)
- Removedbraces@2.3.2(transitive)
- Removedcache-base@1.0.1(transitive)
- Removedchokidar@1.7.0(transitive)
- Removedcomposer@0.10.0(transitive)
- Removeddecode-uri-component@0.2.2(transitive)
- Removeddefine-property@1.0.02.0.2(transitive)
- Removedexpand-brackets@2.1.4(transitive)
- Removedextglob@2.0.4(transitive)
- Removedfile-uri-to-path@1.0.0(transitive)
- Removedfill-range@4.0.0(transitive)
- Removedfragment-cache@0.2.1(transitive)
- Removedfsevents@1.2.13(transitive)
- Removedhas-value@1.0.0(transitive)
- Removedhas-values@1.0.0(transitive)
- Removedis-binary-path@1.0.1(transitive)
- Removedis-descriptor@1.0.3(transitive)
- Removedis-number@3.0.0(transitive)
- Removedis-windows@1.0.2(transitive)
- Removedkind-of@4.0.0(transitive)
- Removedlodash@3.10.1(transitive)
- Removedmap-cache@0.2.2(transitive)
- Removedmicromatch@3.1.10(transitive)
- Removednan@2.22.0(transitive)
- Removednanomatch@1.2.13(transitive)
- Removedpascalcase@0.1.1(transitive)
- Removedposix-character-classes@0.1.1(transitive)
- Removedreaddirp@2.2.1(transitive)
- Removedregex-not@1.0.2(transitive)
- Removedresolve-url@0.2.1(transitive)
- Removedret@0.1.15(transitive)
- Removedsafe-regex@1.1.0(transitive)
- Removedsnapdragon@0.8.2(transitive)
- Removedsnapdragon-node@2.1.1(transitive)
- Removedsnapdragon-util@3.0.1(transitive)
- Removedsource-map@0.5.7(transitive)
- Removedsource-map-resolve@0.5.3(transitive)
- Removedsource-map-url@0.4.1(transitive)
- Removedsplit-string@1.0.1(transitive)
- Removedto-regex@3.0.2(transitive)
- Removedto-regex-range@2.1.1(transitive)
- Removedunset-value@1.0.0(transitive)
- Removedurix@0.1.0(transitive)
- Removeduse@3.1.1(transitive)
Updatedbase-tasks@^0.3.0