Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

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

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

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.build-info
2+
.sass-cache
3+
dist
4+
node_modules

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v8.9.4

CHANGELOG.md

+4
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

+3
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

+10
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

+10
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)