srf-feathers 1.8.0 → 1.8.2

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.
package/README.md CHANGED
@@ -83,7 +83,7 @@ In case this solution doesn't work for your usecase. It is possible to adjust th
83
83
  * enter directory where you installed it, e.g. `cd feathers`
84
84
  * install dependencies `npm install`
85
85
 
86
- ℹ️ If you have to update the _secrets_ (e.g. `CHROMATIC_PROJECT_TOKEN` for deployment to chromatic or `NPM_TOKEN` for deploying on NPM), you can change them on https://github.com/mmz-srf/feathers/settings/secrets/actions
86
+ ℹ️ If you have to update the _secrets_ (e.g. `CHROMATIC_PROJECT_TOKEN` for deployment to chromatic), you can change them on https://github.com/mmz-srf/feathers/settings/secrets/actions
87
87
 
88
88
  ### Building
89
89
 
@@ -101,9 +101,11 @@ npm run storybook
101
101
 
102
102
  ## Publishing
103
103
 
104
- `srf-feathers` is published on [NPM](https://www.npmjs.com/package/srf-feathers). A github workflow is used to auto-publish on NPM when the version number in `package.json` is increased on the main branch.
104
+ `srf-feathers` is published on [NPM](https://www.npmjs.com/package/srf-feathers).
105
105
 
106
- In case this fails, publish via `npm publish` (you must be logged into npm in the CLI).
106
+ Make sure you're logged into npm with the correct user: `npm login` (User, Password and 2FA are all found in the password vault)
107
+
108
+ Afterwards, publish via `npm publish`
107
109
 
108
110
  ### Generating New Components
109
111
 
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { LogoProps } from './Logo.types';
3
3
  import './Logo.scss';
4
- export declare const LogoBirds: readonly ["globi", "schorsch", "roebi", "karl", "pitt", "hahn", "falk", "woody", "edith", "waltraud", "thomy", "abed"];
4
+ export declare const LogoBirds: readonly ["abed", "edith", "falk", "globi", "hahn", "karl", "pitt", "roebi", "schorsch", "star", "thomy", "waltraud", "woody"];
5
5
  export type LogoBirdsType = (typeof LogoBirds)[number];
6
6
  declare const Logo: React.FC<LogoProps>;
7
7
  export default Logo;