Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 17 additions & 24 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
{
"name": "purescript-arraybuffer-types",
"homepage": "https://github.com/purescript-contrib/purescript-arraybuffer-types",
"description": "PureScript type definitions for JavaScript ArrayBuffers",
"keywords": [
"purescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/purescript-contrib/purescript-arraybuffer-types.git"
},
"ignore": [
"**/.*",
"bower_components",
"node_modules",
"output",
"bower.json",
"gulpfile.js",
"package.json"
],
"devDependencies": {
"purescript-console": "^5.0.0",
"purescript-effect": "^3.0.0"
}
"name": "purescript-arraybuffer-types",
"license": [
"MIT"
],
"repository": {
"type": "git",
"url": "https://github.com/purescript-contrib/purescript-arraybuffer-types"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output"
],
"dependencies": {
"purescript-psci-support": "^v5.0.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be in devDependencies; if you want to generate it from the spago.dhall file, then we can add a separate dev.dhall file that includes psci-support and remove all non-dev dependencies from the main spago.dhall.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok I'll do it that way in the future, thanks for the advice.

}
}
4 changes: 3 additions & 1 deletion spago.dhall
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{ name = "arraybuffer-types"
, dependencies = [ "console", "effect", "psci-support" ]
, dependencies = [ "psci-support" ]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs" ]
, license = "MIT"
, repository = "https://github.com/purescript-contrib/purescript-arraybuffer-types"
}