BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
915e5634
Commit
915e5634
authored
May 31, 2018
by
Mike Greiling
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-yarn-clean-step' into 'master'
Add yarn clean step, to delete production compiled assets See merge request gitlab-org/gitlab-ce!19212
parents
68afa03a
9d271454
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
tips.md
doc/development/new_fe_guide/tips.md
+7
-1
package.json
package.json
+1
-0
No files found.
doc/development/new_fe_guide/tips.md
View file @
915e5634
# Tips
> TODO: Add tips
## Clearing production compiled assets
To clear production compiled assets created with
`yarn webpack-prod`
you can run:
```
yarn clean
```
package.json
View file @
915e5634
{
"private"
:
true
,
"scripts"
:
{
"clean"
:
"rm -rf public/assets tmp/cache/*-loader"
,
"dev-server"
:
"nodemon -w 'config/webpack.config.js' --exec 'webpack-dev-server --config config/webpack.config.js'"
,
"eslint"
:
"eslint --max-warnings 0 --ext .js,.vue ."
,
"eslint-fix"
:
"eslint --max-warnings 0 --ext .js,.vue --fix ."
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment