Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Mar 22, 2021
2 parents 18693fb + cf757ed commit 52d577c
Show file tree
Hide file tree
Showing 171 changed files with 3,362 additions and 1,773 deletions.
3 changes: 0 additions & 3 deletions .autogen/check_pr.jq

This file was deleted.

2 changes: 0 additions & 2 deletions .autogen/next_url.jq

This file was deleted.

39 changes: 0 additions & 39 deletions .autogen/patreon.jq

This file was deleted.

87 changes: 0 additions & 87 deletions .autogen/update_readme_patreon.sh

This file was deleted.

20 changes: 1 addition & 19 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,11 @@
"parser": "@typescript-eslint/parser"
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
"eslint:recommended"
],
"rules": {
"vue/require-v-for-key": 0,
"vue/max-attributes-per-line": 0,
"vue/html-indent": 0,
"vue/html-self-closing": 0,
"vue/no-unused-vars": 0,
"vue/attributes-order": 0,
"vue/require-prop-types": 0,
"vue/require-default-prop": 0,
"vue/html-closing-bracket-spacing": 0,
"vue/singleline-html-element-content-newline": 0,
"vue/no-v-html": 0,
"no-console": 0,
"no-unused-vars": 0,
"no-empty": 0
},
"globals": {
"ENV": true,
"VERSION": true,
"API": true,
"LANGS": true
}
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
see [releases](https://github.com/syuilo/misskey/releases)
Binary file added assets/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion assets/redoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
</head>
<body>
<redoc spec-url="/api.json" expand-responses="200" expand-single-schema-field="true"></redoc>
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"> </script>
<script src="https://cdn.jsdelivr.net/npm/redoc@2.0.0-rc.50/bundles/redoc.standalone.js" integrity="sha256-WJbngBWN9vp6vkEuzeoSj5tE5saW9Hfj6/SinkzhL2s=" crossorigin="anonymous"></script>
</body>
</html>
18 changes: 8 additions & 10 deletions gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const locales: { [x: string]: any } = require('./locales');
const meta = require('./package.json');

gulp.task('build:ts', () => {
const tsProject = ts.createProject('./tsconfig.json');
const tsProject = ts.createProject('./src/tsconfig.json');

return tsProject
.src()
Expand Down Expand Up @@ -64,7 +64,6 @@ gulp.task('build:client:style', () => {
gulp.task('build:copy', gulp.parallel('build:copy:locales', 'build:copy:views', 'build:client:script', 'build:client:style', 'build:copy:fonts', () =>
gulp.src([
'./src/emojilist.json',
'./src/server/web/views/**/*',
'./src/**/assets/**/*',
'!./src/client/assets/**/*'
]).pipe(gulp.dest('./built/'))
Expand All @@ -78,17 +77,16 @@ gulp.task('cleanall', gulp.parallel('clean', cb =>
rimraf('./node_modules', cb)
));

gulp.task('copy:docs', () =>
gulp.src([
'./src/docs/**/*',
])
.pipe(gulp.dest('./built/assets/docs/'))
);

gulp.task('build', gulp.parallel(
'build:ts',
'build:copy',
'copy:docs',
));

gulp.task('default', gulp.task('build'));

gulp.task('watch', () => {
gulp.watch([
'./src/**/*',
'!./src/client/**/*'
], { ignoreInitial: false }, gulp.task('build'));
});
Loading

0 comments on commit 52d577c

Please sign in to comment.