Skip to content

Commit

Permalink
transpiration not working
Browse files Browse the repository at this point in the history
  • Loading branch information
sameer-ahmed committed May 1, 2018
1 parent b324e94 commit 8f8c582
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 4 deletions.
62 changes: 60 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,61 @@

node_modules/*
lib/*
# 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/
jspm_packages/

# 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 Integrity file
.yarn-integrity

# dotenv environment variables file
.env

lib
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simply-js-utils",
"version": "0.0.2",
"version": "0.0.3",
"description": "Simple ES6 Js utils",
"main": "lib/index.js",
"repository": {
Expand All @@ -18,7 +18,8 @@
"lib": "lib"
},
"scripts": {
"prepublish": "node_modules/babel-cli/bin/babel.js src --out-dir lib",
"compile": "node_modules/babel-cli/bin/babel.js --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
Expand Down

0 comments on commit 8f8c582

Please sign in to comment.