Skip to content

Commit e162d1b

Browse files
committed
refactor: Add website.
1 parent 9d8ca68 commit e162d1b

File tree

295 files changed

+15888
-6754
lines changed

Some content is hidden

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

295 files changed

+15888
-6754
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ jobs:
1313
node-version: 14
1414

1515
- name: Look Changelog
16-
uses: jaywcjlove/[email protected].2
16+
uses: jaywcjlove/[email protected].3
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot)
2020
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'
2121

2222
- run: yarn install
2323

24-
- name: package/react-native-uiw
25-
working-directory: package/react-native-uiw
26-
run: npm install && npm run start
24+
- name: packages/core
25+
# working-directory: packages/react-native-uiw
26+
run: npm run build
2727

2828
- name: Is a tag created auto?
2929
id: create_tag
3030
uses: jaywcjlove/[email protected]
3131
with:
3232
token: ${{ secrets.GITHUB_TOKEN }}
33-
package-path: ./package/react-native-uiw/package.json
33+
package-path: ./packages/core/package.json
3434

3535
- name: Generate Changelog
3636
id: changelog

.gitignore

+110-56
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,113 @@
1-
# OSX
2-
#
3-
.DS_Store
1+
# Created by https://www.gitignore.io/api/node
2+
# Edit at https://www.gitignore.io/?templates=node
43

5-
# Xcode
6-
#
7-
build/
8-
*.pbxuser
9-
!default.pbxuser
10-
*.mode1v3
11-
!default.mode1v3
12-
*.mode2v3
13-
!default.mode2v3
14-
*.perspectivev3
15-
!default.perspectivev3
16-
xcuserdata
17-
*.xccheckout
18-
*.moved-aside
19-
DerivedData
20-
*.hmap
21-
*.ipa
22-
*.xcuserstate
23-
24-
# Android/IntelliJ
25-
#
26-
build/
27-
.idea
28-
.gradle
29-
local.properties
30-
*.iml
4+
doc
5+
lib
6+
7+
### Node ###
8+
# Logs
9+
logs
10+
*.log
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
lerna-debug.log*
15+
package-lock.json
16+
17+
# Diagnostic reports (https://nodejs.org/api/report.html)
18+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
19+
20+
# Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
# Directory for instrumented libs generated by jscoverage/JSCover
27+
lib-cov
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage
31+
32+
# nyc test coverage
33+
.nyc_output
3134

32-
# node.js
33-
#
35+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
36+
.grunt
37+
38+
# Bower dependency directory (https://bower.io/)
39+
bower_components
40+
41+
# node-waf configuration
42+
.lock-wscript
43+
44+
# Compiled binary addons (https://nodejs.org/api/addons.html)
45+
build/Release
46+
47+
# Dependency directories
3448
node_modules/
35-
npm-debug.log
36-
yarn-error.log
37-
38-
# BUCK
39-
buck-out/
40-
\.buckd/
41-
*.keystore
42-
!debug.keystore
43-
44-
# fastlane
45-
#
46-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47-
# screenshots whenever they are needed.
48-
# For more information about the recommended setup visit:
49-
# https://docs.fastlane.tools/best-practices/source-control/
50-
51-
*/fastlane/report.xml
52-
*/fastlane/Preview.html
53-
*/fastlane/screenshots
54-
55-
# Bundle artifact
56-
*.jsbundle
57-
58-
# CocoaPods
59-
/ios/Pods/
49+
jspm_packages/
50+
51+
# TypeScript v1 declaration files
52+
typings/
53+
54+
# Optional npm cache directory
55+
.npm
56+
57+
# Optional eslint cache
58+
.eslintcache
59+
60+
# Optional REPL history
61+
.node_repl_history
62+
63+
# Output of 'npm pack'
64+
*.tgz
65+
66+
# Yarn Integrity file
67+
.yarn-integrity
68+
69+
# dotenv environment variables file
70+
.env
71+
.env.test
72+
73+
# parcel-bundler cache (https://parceljs.org/)
74+
.cache
75+
76+
# next.js build output
77+
.next
78+
79+
# nuxt.js build output
80+
.nuxt
81+
82+
# vuepress build output
83+
.vuepress/dist
84+
85+
# Serverless directories
86+
.serverless/
87+
88+
# FuseBox cache
89+
.fusebox/
90+
91+
# DynamoDB Local files
92+
.dynamodb/
93+
94+
# End of https://www.gitignore.io/api/node
95+
96+
.DS_Store
97+
.cache
98+
.vscode
99+
.idea
100+
.env
101+
102+
*.bak
103+
*.tem
104+
*.temp
105+
#.swp
106+
*.*~
107+
~*.*
108+
109+
# IDEA
110+
*.iml
111+
*.ipr
112+
*.iws
113+
.idea/

.prettierignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
**/*.md
2+
**/*.svg
3+
**/*.ejs
4+
**/*.yml
5+
package.json
6+
node_modules
7+
dist
8+
build
9+
lib
10+
test

.prettierrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"printWidth": 120,
5+
"overrides": [
6+
{
7+
"files": ".prettierrc",
8+
"options": { "parser": "json" }
9+
}
10+
]
11+
}

LICENSE

-21
This file was deleted.

0 commit comments

Comments
 (0)