-
Notifications
You must be signed in to change notification settings - Fork 8
upgrade to ps 0.12 #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,33 @@ | ||
{ | ||
"name": "purescript-ace-halogen-example", | ||
"private": true, | ||
"ignore": [ | ||
"**/.*", | ||
"bower_components", | ||
"node_modules", | ||
"example", | ||
"output", | ||
"test", | ||
"bower.json", | ||
"package.json" | ||
], | ||
"dependencies": { | ||
"purescript-ace-halogen": "*", | ||
"ace-builds": "^1.2.2" | ||
"purescript-prelude": "^4.1.1", | ||
"purescript-halogen": "4.0.0", | ||
"purescript-ace": "^7.0.0", | ||
"purescript-aff": "^5.1.1", | ||
"purescript-random": "^4.0.0", | ||
"ace-builds": "^1.4.4" | ||
}, | ||
"resolutions": { | ||
"purescript-foreign-object": "^2.0.1", | ||
"purescript-typelevel-prelude": "^4.0.0", | ||
"purescript-web-html": "^2.0.0", | ||
"purescript-web-uievents": "^2.0.0", | ||
"purescript-web-file": "^2.0.0", | ||
"purescript-web-dom": "^2.0.0", | ||
"purescript-web-storage": "^3.0.0", | ||
"purescript-web-events": "^2.0.0" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,9 @@ | |
"build": "pulp browserify --optimise --to example.js" | ||
}, | ||
"devDependencies": { | ||
"pulp": "^9.0.1", | ||
"purescript": "^0.10.1", | ||
"rimraf": "^2.5.4" | ||
"bower": "^1.8.4", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding bower as an explicit local dependency doesn't work too well, since it complains if it's not the most up to date version at all times. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok I can remove. this was when I was struggling to get |
||
"pulp": "^12.4.2", | ||
"purescript": "^0.12.5", | ||
"rimraf": "^2.6.2" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think something is wrong somewhere if you were forced to make resolutions - maybe some other dependency or dependencies that need updating first - I don't mind making resolutions in projects / apps that aren't going to be depended upon, but having it in a library is going to cause issues for anyone who wants to rely on it too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I hate bower so much. ok I can take a look, I just updated everything to latest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I use
npm-check-updates
to bump everything to the latest version (you can use a flag to run it onbower
too) if you don't already know about that. It doesn't help with figuring out where the conflicts are when bower has a meltdown unfortunately, but it's useful to take some of the pain out!