Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Fixed packaging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dsebastien committed Oct 10, 2015
1 parent e69b25d commit fdf5973
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 3 deletions.
42 changes: 42 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Reference: https://docs.npmjs.com/misc/developers#keeping-files-out-of-your-package

# Project specific
gulp/
src/
.editorconfig
.jscsrc
.jshintignore
.jshintrc
gulpfile.babel.js
gulpfile.js
travis.yml
TODO.md

# Misc
*.log

# NPM
node_modules
npm-debug.log

# Windows
Desktop.ini

# JetBrains IDEs
*.iml
.idea/
.webstorm/

# Git
.git
.gitattributes

# OSX
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon

# Sublime text
.sublime-gulp.cache
5 changes: 5 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* 0.0.7
* Fixed an npm publish issue (configured files and folders to include/exclude)
* 0.0.6
* Updated dependencies
* Fixed an npm publish issue
* 0.0.5
* First functional version ;-)
* 0.0.4
Expand Down
3 changes: 2 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* reusable build scripts
** implement a solution to make useful scripts reusable
** examples: npm run scripts in midnightLightV2
** look at the 'bin' property in package.json: https://docs.npmjs.com/files/package.json
** these could be added as 'facade' tasks to the gulp tasks
* what to do/recommend regarding the following files?
** test behavior if absent:
Expand Down Expand Up @@ -35,4 +36,4 @@
* customize behavior (e.g., logging)
* refactor own build to mimic the task loading mechanism & reuse code
* add npm shrinkwrap
* remove gulp-load-plugins (prefer explicit loading)
* remove gulp-load-plugins (prefer explicit loading)
2 changes: 1 addition & 1 deletion gulp/tasks/scripts-javascript-dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import changed from "gulp-changed";
import babel from "gulp-babel";
//import iff from "gulp-if";
import size from "gulp-size";
//import debug from "gulp-debug";
import debug from "gulp-debug";

import config from "../config";
import utils from "../utils";
Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "modern-web-dev-build",
"description": "Modern Web Development Build.",
"version": "0.0.6",
"version": "0.0.7",
"author": {
"name": "Sebastien Dubois",
"email": "[email protected]",
Expand Down Expand Up @@ -112,6 +112,12 @@
"npm": ">=2.0.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"directories": {
"lib": "./dist"
},
"scripts": {
"clean": "gulp clean",
"build": "gulp",
Expand Down

0 comments on commit fdf5973

Please sign in to comment.