This repository has been archived by the owner on Nov 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 847b60a
Showing
324 changed files
with
39,740 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# EditorConfig is awesome: https://editorconfig.org/ | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
insert_final_newline = false | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
BASE_URL=/ | ||
GENERATE_CSS_MAP=true | ||
|
||
VUE_APP_ENABLE_SERVICE_WORKER=false | ||
VUE_APP_API_HOST=http://127.0.0.1 | ||
VUE_APP_API_VERSION=v2 | ||
VUE_APP_NAME="Plus (ThinkSNS+)" | ||
VUE_APP_KEYWORDS="plus,web,spa,sns,think,thinksns,app,social,powerful,vue" | ||
VUE_APP_DESCRIPTION="📱The Plus(ThinkSNS+) client written with modern web technologies, built with Vue.js." | ||
VUE_APP_ROUTER_MODE=hash | ||
VUE_APP_THEME=src/console/theme.js | ||
VUE_APP_EASEMOB_APP_KEY=# | ||
VUE_APP_EASEMOB_API_URL=http://a1.easemob.com | ||
VUE_APP_EASEMOB_ISDEBUG=false | ||
VUE_APP_LBS_GAODE_KEY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dist | ||
node_modules | ||
src/icons/iconfont.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true | ||
}, | ||
extends: ["plugin:vue/essential", "@vue/prettier"], | ||
rules: { | ||
"no-console": process.env.NODE_ENV === "production" ? "error" : "warn", | ||
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "warn" | ||
}, | ||
parserOptions: { | ||
parser: "babel-eslint" | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.env | ||
.DS_Store | ||
|
||
node_modules | ||
dist | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
yarn.lock | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tag-version-prefix="v" | ||
message="chore(release): %s :tada:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
plugins: { | ||
autoprefixer: {}, | ||
"postcss-px2rem": { | ||
remUnit: 100 | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
branches: | ||
only: | ||
- master | ||
language: node_js | ||
node_js: | ||
- "8" | ||
- "10" | ||
cache: | ||
directories: | ||
- "node_modules" | ||
before_install: | ||
- cp .env.example .env | ||
install: | ||
- npm install | ||
before_script: | ||
- npm run build | ||
- npm run pages:build-404-html | ||
script: | ||
- npm run lint --no-fix | ||
- npm run test:unit |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.