Skip to content

Commit

Permalink
Updated build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
clayrisser committed Nov 21, 2017
1 parent 25909f1 commit 72dff33
Show file tree
Hide file tree
Showing 6 changed files with 138 additions and 161 deletions.
71 changes: 65 additions & 6 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,69 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
dist/
app/core/bower_components/
.tmp/
.publish/
jspm_packages/

# Emacs
# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn
.yarn-integrity
yarn.lock

# dotenv environment variables file
.env

# Editors
\#*\#
.\#*
*~
~*
.idea/

# Application
dist/
.tmp/
20 changes: 5 additions & 15 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,24 +1,14 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

# We recommend you to keep these unchanged
end_of_line = lf
[*.{js,json}]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab
72 changes: 64 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,69 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
dist/
app/core/bower_components/
.tmp/
.publish/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Emacs
# Output of 'npm pack'
*.tgz

# Yarn
.yarn-integrity
yarn.lock

# dotenv environment variables file
.env

# Editors
\#*\#
.\#*
*~
~*
.idea/

# Project
blogdown.zip
# Application
dist/
.tmp/
42 changes: 0 additions & 42 deletions .yarnclean

This file was deleted.

89 changes: 0 additions & 89 deletions Makefile

This file was deleted.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
},
"scripts": {
"start": "node ./node_modules/gulp/bin/gulp serve",
"build": "node ./node_modules/gulp/bin/gulp",
"dist": "node ./node_modules/gulp/bin/gulp",
"docker:build": "docker build -t thingdown:blogdown:latest -f Dockerfile .",
"docker:run": "docker run --name some-blogdown --rm --link some-prerender:prerender -p 8081:8081 thingdown/blogdown:latest",
"docker:pull": "docker pull thingdown/blogdown:latest",
"serve": "node ./node_modules/gulp/bin/gulp serve:dist",
"clean": "node ./node_modules/gulp/bin/gulp clean",
"demo": "node ./node_modules/gulp/bin/gulp demo",
Expand Down

0 comments on commit 72dff33

Please sign in to comment.