Skip to content

Commit 806139a

Browse files
committed
chore: removes imgix branding
1 parent 52e8c39 commit 806139a

10 files changed

+10
-89
lines changed

CODE-OF-CONDUCT.md

-3
This file was deleted.

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ project:
6868
# Navigate to the newly cloned directory
6969
cd luminous
7070
# Assign the original repo to a remote called "upstream"
71-
git remote add upstream https://github.com/imgix/luminous
71+
git remote add upstream https://github.com/paulstraw/luminous
7272
```
7373

7474
2. If you cloned a while ago, get the latest changes from upstream:

LICENSE.md

-24
This file was deleted.

README.md

+3-16
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,12 @@
1-
<!-- ix-docs-ignore -->
2-
3-
# This repository is no longer actively maintained.
4-
See [#626](https://github.com/imgix/luminous/issues/626) for details.
5-
61
---
72

8-
![imgix logo](https://assets.imgix.net/sdk-imgix-logo.svg)
9-
103
`Luminous` is a simple, lightweight, no-dependencies JavaScript image lightbox.
114

125
[![npm version](https://img.shields.io/npm/v/luminous-lightbox.svg)](https://www.npmjs.com/package/luminous-lightbox)
13-
[![Build Status](https://travis-ci.org/imgix/luminous.svg?branch=main)](https://travis-ci.org/imgix/luminous)
146
[![npm](https://img.shields.io/npm/dm/luminous-lightbox.svg)](https://www.npmjs.com/package/luminous-lightbox)
15-
[![License](https://img.shields.io/github/license/imgix/luminous)](https://github.com/imgix/luminous/blob/main/LICENSE.md)
167
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
17-
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fimgix%2Fluminous.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fimgix%2Fluminous?ref=badge_shield)
188

199
---
20-
<!-- /ix-docs-ignore -->
2110

2211
- [Installation](#installation)
2312
- [Usage](#usage)
@@ -35,7 +24,7 @@ See [#626](https://github.com/imgix/luminous/issues/626) for details.
3524

3625
- **NPM**: `npm install luminous-lightbox`
3726
- **Bower**: `bower install luminous`
38-
- **Manual**: [Download](https://github.com/imgix/luminous/archive/main.zip) and use `dist/Luminous.min.js` or `dist/Luminous.js`
27+
- **Manual**: [Download](https://github.com/paulstraw/luminous/archive/main.zip) and use `dist/Luminous.min.js` or `dist/Luminous.js`
3928

4029
If you're using the pre-built version of Luminous, it will automatically make `window.Luminous` and `window.LuminousGallery` available for your use when included on your page.
4130

@@ -59,7 +48,7 @@ new Luminous(…);
5948

6049
## Usage
6150

62-
Once you've installed Luminous via one of the above methods, you're ready to get started. There are no dependencies, so you can just start making cool stuff. Check out the [announcement blog post](https://blog.imgix.com/2016/01/06/better-lightbox-zoom-viewer-with-imgix?utm_medium=referral&utm_source=github&utm_campaign=luminous), or take a peek at [our demo](https://codepen.io/imgix/pen/wMgOEL). Here's an example of a basic implementation:
51+
Once you've installed Luminous via one of the above methods, you're ready to get started. There are no dependencies, so you can just start making cool stuff. Check out [our demo](https://codepen.io/imgix/pen/wMgOEL). Here's an example of a basic implementation:
6352

6453
```html
6554
<a href="https://assets.imgix.net/dog.png?w=1600">
@@ -191,7 +180,5 @@ We support the latest version of Google Chrome (which [automatically updates](ht
191180

192181
## Meta
193182

194-
Luminous was made by [imgix](https://imgix.com?utm_medium=referral&utm_source=github&utm_campaign=luminous). It's licensed under the BSD 2-Clause license (see the [license file](https://github.com/imgix/luminous/blob/main/LICENSE.md) for more info). Any contribution is absolutely welcome, but please review the [contribution guidelines](https://github.com/imgix/luminous/blob/main/CONTRIBUTING.md) before getting started.
183+
Luminous was made by [imgix](https://imgix.com?utm_medium=referral&utm_source=github&utm_campaign=luminous). Any contribution is absolutely welcome, but please review the [contribution guidelines](https://github.com/paulstraw/luminous/blob/main/CONTRIBUTING.md) before getting started.
195184

196-
## License
197-
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fimgix%2Fluminous.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fimgix%2Fluminous?ref=badge_large)

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dist/luminous-basic.css"
88
],
99
"authors": [
10-
"imgix"
10+
"paulstraw"
1111
],
1212
"license": "BSD-2",
1313
"keywords": [
@@ -16,7 +16,7 @@
1616
"image",
1717
"images"
1818
],
19-
"homepage": "https://github.com/imgix/luminous",
19+
"homepage": "https://github.com/paulstraw/luminous",
2020
"moduleType": [],
2121
"ignore": [
2222
"**/.*",

build/banner.js

-8
This file was deleted.

package-lock.json

-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
"description": "A simple, lightweight, no-dependencies JavaScript image lightbox.",
55
"repository": {
66
"type": "git",
7-
"url": "git+https://github.com/imgix/luminous.git"
7+
"url": "git+https://github.com/paulstraw/luminous.git"
88
},
99
"keywords": [
1010
"javascript",
1111
"lightbox"
1212
],
13-
"author": "imgix",
13+
"author": "paulstraw",
1414
"license": "BSD-2",
1515
"bugs": {
16-
"url": "https://github.com/imgix/luminous/issues"
16+
"url": "https://github.com/paulstraw/luminous/issues"
1717
},
18-
"homepage": "https://github.com/imgix/luminous#readme",
18+
"homepage": "https://github.com/paulstraw/luminous#readme",
1919
"contributors": [
2020
"Frederick Fogerty <frederick.fogerty@gmail.com> (https://github.com/frederickfogerty)",
2121
"Jakub Duras <jakub@duras.me> (https://duras.me)",
@@ -80,7 +80,6 @@
8080
"karma-webpack": "4.0.2",
8181
"npm-run-all": "4.1.5",
8282
"postcss": "8.4.24",
83-
"postcss-banner": "4.0.1",
8483
"postcss-cli": "9.1.0",
8584
"prettier": "2.8.8",
8685
"rimraf": "3.0.2",

postcss.config.js

-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
const licenseBanner = require("./build/banner");
21

32
module.exports = {
43
plugins: [
54
require("cssnano")({
65
preset: "advanced"
76
})
8-
,
9-
require("postcss-banner")({
10-
banner: licenseBanner,
11-
important: true
12-
})
137
]
148
};

webpack.config.js

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
const webpack = require("webpack");
21
const path = require("path");
32
const env = require("yargs").argv.env; // use --env with webpack 2
43
const ClosureCompilerPlugin = require("webpack-closure-compiler");
5-
const licenseBanner = require("./build/banner");
64

75
let libraryName = "luminous";
86

@@ -47,9 +45,6 @@ function buildWithEnv(mode, outputFile) {
4745
test: /^(?!.*tests\.webpack).*$/,
4846
concurrency: 3
4947
}),
50-
new webpack.BannerPlugin({
51-
banner: licenseBanner
52-
}),
5348
]
5449
};
5550

0 commit comments

Comments
 (0)