Skip to content
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

PureScript 0.15 updates #24

Merged
merged 13 commits into from
Jul 8, 2022

Conversation

pete-murphy
Copy link
Member

No description provided.

@mjrussell
Copy link
Member

Awesome, thanks @ptrfrncsmrph! I'll fix the travis/github ci stuff real quick before we get this in to make sure CI is passing

@mjrussell
Copy link
Member

Actually since this adds spago (thanks for that!) maybe you want to do that as part of this PR. Here's an example, just remove the examples building at the bottom - https://github.com/lumihq/purescript-react-basic-classic/blob/main/.github/workflows/ci.yml

packages.dhall Outdated
@@ -0,0 +1,138 @@
{-
Copy link
Member

Choose a reason for hiding this comment

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

Would you mind removing this and the comment from the spago.dhall also? They are a lot of noise that don't add that much value IMO

Copy link
Member Author

@pete-murphy pete-murphy Jun 14, 2022

Choose a reason for hiding this comment

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

Oops, sorry was still a bit of WIP so I was keeping as a draft for now. I didn't know if there was interest in getting this up to date with [email protected] but I noticed it's (I think) the only dep of lumi-components that hasn't been updated yet. I see that there is 😄 I'll address feedback and probably make some more changes today.

Copy link
Member

Choose a reason for hiding this comment

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

Would be awesome to keep it up to date 😄 its been on the TODO list, just haven't gotten to it yet

@pete-murphy
Copy link
Member Author

pete-murphy commented Jun 14, 2022

Hmm, now I'm seeing a failure with

* ERROR: Your node.js version is too old (required: 12.0.0, actual: 10.24.1)

but I don't know where 10.24.1 would be specified

Edit: Oh, I guess it's running the older version of the CI workflow? Will try changing this from Draft to see if that changes how it runs.

@pete-murphy pete-murphy marked this pull request as ready for review June 14, 2022 20:02
@pete-murphy
Copy link
Member Author

pete-murphy commented Jun 14, 2022

Ah, I see now, it was Travis CI that's configured with old Node version

{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "sudo": true,
  "node_js": [
    "10"
  ],
  "install": [
    "npm install"
  ],
  "script": [
    "npx bower install",
    "npm -s test"
  ]
}

I'm guessing Travis would have to be disabled by maintainer, and then the GitHub workflow could be approved and run? (Sorry for noise of extraneous commits!)

@mjrussell
Copy link
Member

I'm guessing Travis would have to be disabled by maintainer, and then the GitHub workflow could be approved and run? (Sorry for noise of extraneous commits!)

No worries! If you want you can remove Travis in this PR (delete the .travis.yml file) or I can push that to main

Comment on lines +5 to +12
You can build this example from the root of the `purescript-react-dnd-basic` project:

```sh
npm install
make all
npm run example:basic
```

This will compile the PureScript source files, bundle them, and use Browserify to combine PureScript and NPM sources into a single bundle.
This will compile the PureScript source files, bundle them, and combine PureScript and NPM sources into a single bundle.
Copy link
Member Author

@pete-murphy pete-murphy Jun 14, 2022

Choose a reason for hiding this comment

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

Changed this to be a bit more like the Halogen examples: https://github.com/purescript-halogen/purescript-halogen/tree/master/examples/basic (removed the Makefile and package.json from this directory in favor of running spago from root directory and adding NPM deps to top-level devDependencies).

It would be nice to have some tests 😄 and to be able to use any examples/ modules in the tests. Started looking into that, but seemed too much for this PR, just manually tested that the basic example still works.

Comment on lines +1 to +15
let config = ./../../spago.dhall

in config
// { sources = config.sources # [ "examples/basic/**/*.purs" ]
, dependencies =
config.dependencies
# [ "arrays"
, "exceptions"
, "foldable-traversable"
, "integers"
, "react-basic"
, "react-basic-dom"
, "web-html"
]
}
Copy link
Member Author

Choose a reason for hiding this comment

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

This formatting looks a bit strange, but this is how dhall format likes things 🤷

Comment on lines +129 to +139
main :: Effect Unit
main = do
maybeContainer <- window
>>= document
>>= toNonElementParentNode
>>> getElementById "container"
case maybeContainer of
Nothing -> throw "Container element not found."
Just container -> do
todoExample <- mkTodoExample
render (todoExample unit) container
Copy link
Member Author

Choose a reason for hiding this comment

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

This used to be in a separate index.js, and there was a Browserify command in the Makefile that would bundle it with the purs output (after writing module.exports = PS.Basic;). It seemed simpler to just use spago bundle-app with a single PS module.

@mjrussell
Copy link
Member

Thanks for this!

@mjrussell mjrussell merged commit c409968 into purescript-react:main Jul 8, 2022
@pete-murphy pete-murphy deleted the purs-0_15-updates branch July 8, 2022 21:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants