chore(stream): fix dependencies

This commit is contained in:
Tylor Steinberger 2017-03-16 13:52:28 -04:00
parent 0813a54fb8
commit f951e5a70c
4 changed files with 44 additions and 5 deletions

View File

@ -10,7 +10,8 @@
"purescript-eff": "^2.0.0",
"purescript-prelude": "^2.5.0",
"purescript-refs": "^2.0.0",
"purescript-maybe": "^2.1.1"
"purescript-maybe": "^2.1.1",
"purescript-partial": "^1.2.0"
},
"devDependencies": {
"purescript-console": "^2.0.0",

32
npm-debug.log Normal file
View File

@ -0,0 +1,32 @@
0 info it worked if it ends with ok
1 verbose cli [ '/home/tylor/.nvm/versions/node/v7.7.1/bin/node',
1 verbose cli '/home/tylor/.nvm/versions/node/v7.7.1/bin/npm',
1 verbose cli 'version',
1 verbose cli 'minor' ]
2 info using npm@4.1.2
3 info using node@v7.7.1
4 info git [ 'status', '--porcelain' ]
5 verbose stack Error: Git working directory not clean.
5 verbose stack M bower.json
5 verbose stack M package.json
5 verbose stack at /home/tylor/.nvm/versions/node/v7.7.1/lib/node_modules/npm/lib/version.js:247:19
5 verbose stack at /home/tylor/.nvm/versions/node/v7.7.1/lib/node_modules/npm/lib/utils/no-progress-while-running.js:21:8
5 verbose stack at ChildProcess.exithandler (child_process.js:201:7)
5 verbose stack at emitTwo (events.js:106:13)
5 verbose stack at ChildProcess.emit (events.js:194:7)
5 verbose stack at maybeClose (internal/child_process.js:899:16)
5 verbose stack at Socket.<anonymous> (internal/child_process.js:342:11)
5 verbose stack at emitOne (events.js:96:13)
5 verbose stack at Socket.emit (events.js:191:7)
5 verbose stack at Pipe._handle.close [as _onclose] (net.js:504:12)
6 verbose cwd /home/tylor/code/tylors/tempest
7 error Linux 4.8.0-41-generic
8 error argv "/home/tylor/.nvm/versions/node/v7.7.1/bin/node" "/home/tylor/.nvm/versions/node/v7.7.1/bin/npm" "version" "minor"
9 error node v7.7.1
10 error npm v4.1.2
11 error Git working directory not clean.
11 error M bower.json
11 error M package.json
12 error If you need help, you may report this error at:
12 error <https://github.com/npm/npm/issues>
13 verbose exit [ 1, true ]

View File

@ -1,5 +1,5 @@
{
"name": "purescript-tempest",
"name": "purescript-stream",
"version": "0.0.0",
"description": "",
"main": "index.js",
@ -34,8 +34,5 @@
"purescript": "^0.10.7",
"uglify-js": "^2.8.11",
"validate-commit-msg": "^2.11.2"
},
"dependencies": {
"@most/prelude": "^1.5.0"
}
}

9
test/Main.purs Normal file
View File

@ -0,0 +1,9 @@
module Test.Main where
import Control.Monad.Eff (Eff)
import Control.Monad.Eff.Console (CONSOLE, logShow)
import Data.Unit (Unit)
main :: Eff (console :: CONSOLE) Unit
main = do
logShow "Write tests. You're a bad developer!"