Skip to content

Commit bdab085

Browse files
committed
Roboto fonts are defined as standard for TC UI Kit
0 parents  commit bdab085

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+18764
-0
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["topcoder-react-utils/config/babel/lib-compile"]
3+
}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.build-info
2+
.sass-cache
3+
dist
4+
node_modules

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v8.9.4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Topcoder React UI Kit Changelog
2+
3+
### v0.0.x
4+
Pre-release drafts of the initial package version. A big journey starts here.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Topcoder React UI Kit
2+
3+
The [Topcoder](https://www.topcoder.com) UI Kit for internal ReactJS projects.

config/webpack/development.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const configFactory
2+
= require('topcoder-react-utils/config/webpack/lib-development');
3+
const path = require('path');
4+
5+
const standardConfig = configFactory({
6+
context: path.resolve(__dirname, '../..'),
7+
entry: './src',
8+
});
9+
10+
module.exports = standardConfig;

config/webpack/production.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const configFactory
2+
= require('topcoder-react-utils/config/webpack/lib-production');
3+
const path = require('path');
4+
5+
const standardConfig = configFactory({
6+
context: path.resolve(__dirname, '../..'),
7+
entry: './src',
8+
});
9+
10+
module.exports = standardConfig;

0 commit comments

Comments
 (0)