File tree

4 files changed

+23
-29
lines changed

4 files changed

+23
-29
lines changed
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
package.json
33
package-lock.json
44
public
5+
yarn.lock
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import ${name} from '@coreui/react/${file.replace('.tsx', '')}'
5656
types.push(`\`${element.replace(/"/g, "'")}\``)
5757
})
5858

59-
content += `| **${name}** | ${description} | ${types.join(' \\| ')} | ${defaultValue} |\n`
59+
content += `| **${name}** | ${description} | ${types.join(' \\| ')} | ${defaultValue.replaceAll('\n', '<br/>')} |\n`
6060
console.log(`${filename} - ${key}`)
6161
}
6262
}
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,31 @@
11
{
22
"name": "@coreui/react-docs",
33
"private": true,
4-
"description": "A simple starter to get up and developing quickly with Gatsby",
4+
"description": "",
55
"version": "4.0.0-rc.4",
66
"config": {
77
"version_short": "4.0"
88
},
9-
"author": "Kyle Mathews <[email protected]>",
9+
"homepage": "https://coreui.io/react/",
10+
"author": "The CoreUI Team (https://.com/orgs/coreui/people)",
11+
"license": "MIT",
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://.com/coreui/coreui-react.git"
15+
},
16+
"bugs": {
17+
"url": "https://.com/coreui/coreui-react/issues"
18+
},
19+
"scripts": {
20+
"api": "rimraf \"content/$npm_package_config_version_short/api/*\" & node build/api.js",
21+
"build": "gatsby build",
22+
"develop": "gatsby develop",
23+
"dist": "run-s api build",
24+
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
25+
"start": "gatsby develop",
26+
"serve": "gatsby serve",
27+
"clean": "gatsby clean"
28+
},
1029
"dependencies": {
1130
"@coreui/chartjs": "^3.0.0",
1231
"@coreui/coreui": "^4.0.5",
@@ -45,17 +64,5 @@
4564
"devDependencies": {
4665
"npm-run-all": "^4.1.5",
4766
"prettier": "2.4.1"
48-
},
49-
"license": "MIT",
50-
"scripts": {
51-
"api": "rimraf \"content/$npm_package_config_version_short/api/*\" & node build/api.js",
52-
"build": "gatsby build",
53-
"develop": "gatsby develop",
54-
"dist": "run-s api build",
55-
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
56-
"start": "gatsby develop",
57-
"serve": "gatsby serve",
58-
"clean": "gatsby clean",
59-
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
6067
}
6168
}

0 commit comments

Comments
 (0)