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

License Update #1374

Merged
merged 4 commits into from Oct 8, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/index.html
Expand Up @@ -891,7 +891,7 @@ <h3>Installing</h3>
<pre><code class="language-shell">$ yarn add animate.css
</code></pre>
<p>Import it into your file:</p>
<pre><code class="language-js">import &quot;animate.css&quot;
<pre><code class="language-js">import 'animate.css';
</code></pre>
<p>Or add it directly to your webpage using a CDN:</p>
<pre><code class="language-html">&lt;head&gt;
Expand Down Expand Up @@ -1287,7 +1287,7 @@ <h2>Core team</h2>

<section class="docSection-license-contributing" id="license-contributing">
<h2>License and Contributing</h2>
<p>Animate.css is licensed under the MIT license. (<a href="https://opensource.org/licenses/MIT">https://opensource.org/licenses/MIT</a>)</p>
<p>Animate.css is licensed under the <a href="http://firstdonoharm.dev">Hippocratic License</a>.</p>
warengonzaga marked this conversation as resolved.
Show resolved Hide resolved
<h3>Contributing</h3>
<p>Pull requests are the way to go here. We only have two rules for submitting a pull request: match the naming convention (camelCase, categorized [fades, bounces, etc.]) and let us see a demo of submitted animations in a <a href="https://codepen.io">pen</a>. That <strong>last one is important</strong>.</p>
<h3>Code of Conduct</h3>
Expand Down
2 changes: 1 addition & 1 deletion docsSource/sections/09-license-contributing.md
@@ -1,6 +1,6 @@
## License and Contributing

Animate.css is licensed under the MIT license. (https://opensource.org/licenses/MIT)
Animate.css is licensed under the [Hippocratic License](http://firstdonoharm.dev).

### Contributing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -10,7 +10,7 @@
"name": "Animate.css"
},
"homepage": "https://animate.style/",
"license": "MIT",
"license": "HL-2.1",
warengonzaga marked this conversation as resolved.
Show resolved Hide resolved
"animateConfig": {
"prefix": "animate__"
},
Expand Down
8 changes: 4 additions & 4 deletions postcss.config.js
@@ -1,18 +1,18 @@
const fs = require('fs');
const {homepage, version, author, animateConfig} = JSON.parse(fs.readFileSync('package.json'));

const header = `@charset "UTF-8";
const header = `
@charset "UTF-8";

/*!
* animate.css - ${homepage}
* Version - ${version}
* Licensed under the MIT license - https://opensource.org/licenses/MIT
* Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
*
* Copyright (c) ${new Date().getFullYear()} ${author.name}
*/


`;
`;

module.exports = (ctx) => {
const prefix = ctx.env === 'compat' ? '' : animateConfig.prefix;
Expand Down