Skip to content

Conversation

williamgrosset
Copy link

Overview

This PR introduces changes to the README.md:

  • Removes reference for UMD module
  • Fixes reference for blinking animation stylesheet

Also, I'm working with a project that's not using sass, so I just used the compiled version directly:

.Typist .Cursor {
  display: inline-block;
}

.Typist .Cursor--blinking {
  opacity: 1;
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

Thanks again for the package — cheers!

@williamgrosset williamgrosset changed the title Nit: Fix stylesheet reference in README Nit: Fix references in README Mar 11, 2018
@williamgrosset williamgrosset changed the title Nit: Fix references in README Fix references in README Mar 11, 2018
}
```

#### UMD module:
Copy link
Owner

Choose a reason for hiding this comment

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

hey! I'm not sure why we removed this. Is the file not available in the npm package?

blink. To include it, you must include
[`dist/Typist.css`](/dist/Typist.css) in your build.

[`src/Cursor.scss`](/src/Cursor.scss) in your build.
Copy link
Owner

Choose a reason for hiding this comment

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

hmmm, I'm not sure this is correct. we were previously pointing people to the compiled .css version, right?

@williamgrosset
Copy link
Author

Hey @jstejada — don't worry about this PR. I had build issues when I ran this last night, and assumed dist/ was completely gone due to this comment. I re-ran the script and everything was fine. 👍

homer
:)

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