Add missing generated bower.json file

This commit is contained in:
Adrian Sieber 2021-03-20 10:57:56 +00:00
parent ca953643b4
commit f66d6c42b4
3 changed files with 38 additions and 15 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
/.spago
/bower_components
/generated-docs
/node_modules
/output

25
bower.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "purescript-yaml-next",
"license": [
"MIT"
],
"repository": {
"type": "git",
"url": "https://github.com/archaeron/purescript-yaml-next"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output"
],
"dependencies": {
"purescript-argonaut-codecs": "^v8.0.0",
"purescript-argonaut-core": "^v6.0.0",
"purescript-effect": "^v3.0.0",
"purescript-foreign": "^v6.0.0",
"purescript-functions": "^v5.0.0",
"purescript-ordered-collections": "^v2.0.0",
"purescript-unsafe-coerce": "^v5.0.0"
}
}

View File

@ -1,18 +1,15 @@
{ name =
"yaml-next"
{ name = "yaml-next"
, license = "MIT"
, repository = "https://github.com/archaeron/purescript-yaml"
, repository = "https://github.com/archaeron/purescript-yaml-next"
, dependencies =
[ "argonaut-codecs"
, "argonaut-core"
, "effect"
, "foreign"
, "functions"
, "ordered-collections"
, "unsafe-coerce"
]
, packages =
./packages.dhall
, sources =
[ "src/**/*.purs" ]
[ "argonaut-codecs"
, "argonaut-core"
, "effect"
, "foreign"
, "functions"
, "ordered-collections"
, "unsafe-coerce"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs" ]
}