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

Commit a930e72

Browse files
author
newtykins
committed
chore: release v1.0.4
1 parent 21f7fa7 commit a930e72

15 files changed

+2371
-10468
lines changed

.gitignore

-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
.yarn/*
2-
!.yarn/releases
3-
!.yarn/plugins
4-
.pnp.*
51
dist
62
node_modules

.npmignore

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
readme.md
2-
src
3-
.yarn
4-
.yarnrc.yml
5-
gulpfile.js
6-
tsconfig.json
1+
*
2+
!dist/**/*
3+
!index.d.ts

.prettierrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "none",
4+
"singleQuote": true,
5+
"printWidth": 100,
6+
"tabWidth": 4,
7+
"bracketSpacing": true,
8+
"arrowParens": "avoid"
9+
}

.yarn/releases/yarn-3.0.2.cjs

-631
This file was deleted.

.yarnrc.yml

-2
This file was deleted.

gulpfile.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
const gulp = require("gulp");
2-
const typescript = require("gulp-typescript");
3-
const uglify = require("gulp-uglify");
1+
const gulp = require('gulp');
2+
const typescript = require('gulp-typescript');
3+
const uglify = require('gulp-uglify');
44

55
const compile = () =>
6-
gulp
7-
.src("src/**/*.ts")
8-
.pipe(typescript())
9-
.pipe(uglify({ mangle: { toplevel: true } }))
10-
.pipe(gulp.dest("dist"));
6+
gulp
7+
.src('src/**/*.ts')
8+
.pipe(typescript())
9+
.pipe(uglify({ mangle: { toplevel: true } }))
10+
.pipe(gulp.dest('dist'));
1111

12-
gulp.task("default", compile);
12+
gulp.task('default', compile);

index.d.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
export function owoify(input: string): string;
2-
export default owoify;
1+
export default function owofify(text: string): string;

license.md

+49-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,52 @@
1-
Copyright 2021 newtykins
1+
# 🏳️‍🌈 Opinionated Queer License v1.0
22

3-
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:
3+
© 2022 newtykins
44

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

7-
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.
7+
The creators of this Work (“The Licensor”) grant permission
8+
to any person, group or legal entity that doesn't violate the prohibitions below (“The User”),
9+
to do everything with this Work that would otherwise infringe their copyright or any patent claims,
10+
subject to the following conditions:
11+
12+
## Obligations
13+
14+
The User must give appropriate credit to the Licensor,
15+
provide a copy of this license or a (clickable, if the medium allows) link to [oql.avris.it](https://oql.avris.it),
16+
and indicate whether and what kind of changes were made.
17+
The User may do so in any reasonable manner,
18+
but not in any way that suggests the Licensor endorses the User or their use.
19+
20+
## Prohibitions
21+
22+
No one may use this Work for prejudiced or bigoted purposes, including but not limited to:
23+
racism, xenophobia, queerphobia, queer exclusionism, homophobia, transphobia, enbyphobia, misogyny.
24+
25+
No one may use this Work to inflict or facilitate violence or abuse of human rights as defined in the
26+
[Universal Declaration of Human Rights](https://www.un.org/en/about-us/universal-declaration-of-human-rights).
27+
28+
No law enforcement, carceral institutions, immigration enforcement entities, military entities or military contractors
29+
may use the Work for any reason. This also applies to any individuals employed by those entities.
30+
31+
No business entity where the ratio of pay (salaried, freelance, stocks, or other benefits)
32+
between the highest and lowest individual in the entity is greater than 50 : 1
33+
may use the Work for any reason.
34+
35+
No private business run for profit with more than a thousand employees
36+
may use the Work for any reason.
37+
38+
Unless the User has made substantial changes in the Work,
39+
or uses it only as a part of a new work (eg. as a library, as a part of an anthology, etc.),
40+
they are prohibited from selling the Work.
41+
42+
## Sanctions
43+
44+
If the Licensor notifies the User that they have not complied with the rules of the license,
45+
they can keep their license by complying within 30 days after the notice.
46+
If they do not do so, their license ends immediately.
47+
48+
## Warranty
49+
50+
This Work is provided “as is”, without warranty of any kind, express or implied.
51+
The Licensor will not be liable to anyone for any damages related to the Work or this license,
52+
under any kind of legal claim as far as the law allows.

0 commit comments

Comments
 (0)