@fils/color 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +24 -0
  2. package/package.json +1 -2
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # @fils/color
2
+
3
+ Color Package written in TypeScript. Color conversion utils, wrappers for painting color picker in a Canvas Element. Morer to come.
4
+
5
+ This is part of a series of packages that we use in our studio for personal and commercial web based work. It might remain undocumented for a long while but feel free to try it out!
6
+
7
+ ### License
8
+ © Copyright 2022, fil studio
9
+
10
+ [fil](https://fil.studio) is a studio with a creative tech soul. We build bespoke interactive journeys primarily using modern web technologies. We deliver tailored solutions for installations and on-line experiences using our internal toolkit + [ThreeJS](https://threejs.org).
11
+
12
+ fil is the Catalan word for thread. We love threads cause we often talk about them when building applications and, at the same time, threads are something so organic, colourful and playful.
13
+
14
+ Licensed under the Apache License, Version 2.0 (the "License");
15
+ you may not use this file except in compliance with the License.
16
+ You may obtain a copy of the License at
17
+
18
+ [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
19
+
20
+ Unless required by applicable law or agreed to in writing, software
21
+ distributed under the License is distributed on an "AS IS" BASIS,
22
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23
+ See the License for the specific language governing permissions and
24
+ limitations under the License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fils/color",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Color Package written in TypeScript",
5
5
  "main": "lib/main.js",
6
6
  "repository": "git@github.com:fil-studio/fils.git",
@@ -9,7 +9,6 @@
9
9
  "license": "Apache-2.0",
10
10
  "private": false,
11
11
  "scripts": {
12
- "publish": "yarn build && npm publish --access public",
13
12
  "prepare": "yarn build",
14
13
  "build": "tsc --build tsconfig.color.json"
15
14
  },