-
-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add option to sort migrations with naturalSort option
* fix: add @adonisjs/ace as dev dependency * test(migrator): add naturalSort feature * feat(migrator): add naturalSort feature * test(migrator): remove 'only' flag * test(migrator): write back the db configuration before assertion * test(commands): use @adonisjs/core standalone build instead of @adonisjs/ace * ci: skip husky when installing npm deps * fix: make FileNode.filename optional * test(migrator): use path.sep to test path and remove batch assertion * test(migrator): verify that natural sort work for nested file
- Loading branch information
1 parent
f189e57
commit cbf0f3c
Showing
10 changed files
with
230 additions
and
17 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM node:12.0.0-alpine as build-deps | ||
|
||
RUN apk update && apk upgrade && \ | ||
apk add --update git && \ | ||
apk add --update openssh && \ | ||
apk add --update bash && \ | ||
apk add --update wget | ||
apk add --update git && \ | ||
apk add --update openssh && \ | ||
apk add --update bash && \ | ||
apk add --update wget | ||
|
||
WORKDIR /usr/src/app | ||
|
||
COPY package*.json ./ | ||
RUN npm install | ||
RUN HUSKY_SKIP_INSTALL=1 npm install | ||
|
||
COPY . . | ||
RUN npm run build |
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
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
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
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
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
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
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
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
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