Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
342
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
27
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
8dcdbddb
Commit
8dcdbddb
authored
3 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
fix: use import assertion
parent
a8e8b2e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.node-version
+1
-1
1 addition, 1 deletion
.node-version
CHANGELOG.md
+3
-0
3 additions, 0 deletions
CHANGELOG.md
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
packages/backend/src/server/web/manifest.ts
+1
-1
1 addition, 1 deletion
packages/backend/src/server/web/manifest.ts
with
6 additions
and
3 deletions
.node-version
+
1
−
1
View file @
8dcdbddb
v16.1
3.2
v16.1
4.0
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
3
−
0
View file @
8dcdbddb
...
...
@@ -12,6 +12,9 @@ You should also include the user name that made the change.
## 12.x.x (unreleased)
### NOTE
このバージョンからNode v16.14.0以降が必要です
### Changes
-
ノートの最大文字数を設定できる機能が廃止され、デフォルトで一律3000文字になりました
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
1
View file @
8dcdbddb
FROM
node:16.1
3.2
-alpine3.15
AS
base
FROM
node:16.1
4.0
-alpine3.15
AS
base
ENV
NODE_ENV=production
...
...
This diff is collapsed.
Click to expand it.
packages/backend/src/server/web/manifest.ts
+
1
−
1
View file @
8dcdbddb
import
Koa
from
'
koa
'
;
import
*
as
manifest
from
'
./manifest.json
'
;
import
*
as
manifest
from
'
./manifest.json
'
assert
{
type
:
'
json
'
}
;
import
{
fetchMeta
}
from
'
@/misc/fetch-meta.js
'
;
export
const
manifestHandler
=
async
(
ctx
:
Koa
.
Context
)
=>
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment