Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
chore: release v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
newtykins committed Mar 26, 2022
1 parent 21f7fa7 commit a930e72
Show file tree
Hide file tree
Showing 15 changed files with 2,371 additions and 10,468 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
.yarn/*
!.yarn/releases
!.yarn/plugins
.pnp.*
dist
node_modules
9 changes: 3 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
readme.md
src
.yarn
.yarnrc.yml
gulpfile.js
tsconfig.json
*
!dist/**/*
!index.d.ts
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"semi": true,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 4,
"bracketSpacing": true,
"arrowParens": "avoid"
}
631 changes: 0 additions & 631 deletions .yarn/releases/yarn-3.0.2.cjs

This file was deleted.

2 changes: 0 additions & 2 deletions .yarnrc.yml

This file was deleted.

18 changes: 9 additions & 9 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const gulp = require("gulp");
const typescript = require("gulp-typescript");
const uglify = require("gulp-uglify");
const gulp = require('gulp');
const typescript = require('gulp-typescript');
const uglify = require('gulp-uglify');

const compile = () =>
gulp
.src("src/**/*.ts")
.pipe(typescript())
.pipe(uglify({ mangle: { toplevel: true } }))
.pipe(gulp.dest("dist"));
gulp
.src('src/**/*.ts')
.pipe(typescript())
.pipe(uglify({ mangle: { toplevel: true } }))
.pipe(gulp.dest('dist'));

gulp.task("default", compile);
gulp.task('default', compile);
3 changes: 1 addition & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export function owoify(input: string): string;
export default owoify;
export default function owofify(text: string): string;
53 changes: 49 additions & 4 deletions license.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,52 @@
Copyright 2021 newtykins
# 🏳️‍🌈 Opinionated Queer License v1.0

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
© 2022 newtykins

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
## Permissions

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The creators of this Work (“The Licensor”) grant permission
to any person, group or legal entity that doesn't violate the prohibitions below (“The User”),
to do everything with this Work that would otherwise infringe their copyright or any patent claims,
subject to the following conditions:

## Obligations

The User must give appropriate credit to the Licensor,
provide a copy of this license or a (clickable, if the medium allows) link to [oql.avris.it](https://oql.avris.it),
and indicate whether and what kind of changes were made.
The User may do so in any reasonable manner,
but not in any way that suggests the Licensor endorses the User or their use.

## Prohibitions

No one may use this Work for prejudiced or bigoted purposes, including but not limited to:
racism, xenophobia, queerphobia, queer exclusionism, homophobia, transphobia, enbyphobia, misogyny.

No one may use this Work to inflict or facilitate violence or abuse of human rights as defined in the
[Universal Declaration of Human Rights](https://www.un.org/en/about-us/universal-declaration-of-human-rights).

No law enforcement, carceral institutions, immigration enforcement entities, military entities or military contractors
may use the Work for any reason. This also applies to any individuals employed by those entities.

No business entity where the ratio of pay (salaried, freelance, stocks, or other benefits)
between the highest and lowest individual in the entity is greater than 50 : 1
may use the Work for any reason.

No private business run for profit with more than a thousand employees
may use the Work for any reason.

Unless the User has made substantial changes in the Work,
or uses it only as a part of a new work (eg. as a library, as a part of an anthology, etc.),
they are prohibited from selling the Work.

## Sanctions

If the Licensor notifies the User that they have not complied with the rules of the license,
they can keep their license by complying within 30 days after the notice.
If they do not do so, their license ends immediately.

## Warranty

This Work is provided “as is”, without warranty of any kind, express or implied.
The Licensor will not be liable to anyone for any damages related to the Work or this license,
under any kind of legal claim as far as the law allows.
Loading

0 comments on commit a930e72

Please sign in to comment.