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

Commit 8bfb02c

Browse files
committed
[core] Release 2.0.0, new font, new package name under auth0 org
1 parent 2727421 commit 8bfb02c

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "auth0-styleguide-core",
3-
"version": "1.0.1",
2+
"name": "@auth0/styleguide-core",
3+
"version": "2.0.0",
44
"description": "Includes stylus variables, mixins and class utilities common to all Auth0 projects.",
55
"main": "build/core.css",
66
"style": "build/core.css",

packages/core/src/fonts/fakt/index.styl

+12-12
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@
22

33
@font-face {
44
font-family: 'fakt-web';
5-
src: url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Blond.eot?#iefix");
6-
src: url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Blond.eot?#iefix") format("eot"),
7-
url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Blond.woff") format("woff"),
8-
url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Blond.ttf") format("truetype")
5+
src: url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Blond.eot?#iefix");
6+
src: url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Blond.eot?#iefix") format("eot"),
7+
url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Blond.woff") format("woff"),
8+
url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Blond.ttf") format("truetype")
99
font-weight: 300;
1010
font-style: normal;
1111
}
1212

1313
@font-face {
1414
font-family: 'fakt-web';
15-
src: url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Normal.eot?#iefix");
16-
src: url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Normal.eot?#iefix") format("eot"),
17-
url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Normal.woff") format("woff"),
18-
url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Normal.ttf") format("truetype")
15+
src: url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Normal.eot?#iefix");
16+
src: url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Normal.eot?#iefix") format("eot"),
17+
url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Normal.woff") format("woff"),
18+
url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Normal.ttf") format("truetype")
1919
font-weight: 400;
2020
font-style: normal;
2121
}
2222

2323
@font-face {
2424
font-family: 'fakt-web';
25-
src: url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Medium.eot?#iefix");
26-
src: url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Medium.eot?#iefix") format("eot"),
27-
url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Medium.woff") format("woff"),
28-
url("https://cdn.auth0.com/styleguide/core/development/fonts/fakt/FaktPro-Medium.ttf") format("truetype")
25+
src: url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Medium.eot?#iefix");
26+
src: url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Medium.eot?#iefix") format("eot"),
27+
url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Medium.woff") format("woff"),
28+
url("https://cdn.auth0.com/styleguide/core/2.0.0/fonts/fakt/FaktPro-Medium.ttf") format("truetype")
2929
font-weight: 500;
3030
font-style: normal;
3131
}

packages/core/tools/scripts/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ echo "Deploying $PACKAGE_VERSION to npm"
4242
NPM_EXISTS=$(npm info $PACKAGE_NAME@$PACKAGE_VERSION)
4343

4444
if [ "$NPM_EXISTS" == "undefined" ]; then
45-
npm publish
45+
npm publish --access=public
4646
else
4747
echo "There is already a version $PACKAGE_VERSION in npm. Skiping npm publish."
4848
fi

0 commit comments

Comments
 (0)