-
Notifications
You must be signed in to change notification settings - Fork 724
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFR] Fix non-dev dependencies #1189
Merged
Merged
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
483a4f1
Better split of dependencies between dev and prod
jpetitcolas 7312e4c
Embed correct source folder
jpetitcolas b3e8424
Commit built files (for testing only)
jpetitcolas 8c0a056
Simplify vendors file
jpetitcolas c5b77c4
Move jsonlint dependency to prod (because of maJsonField)
jpetitcolas 4d586e6
Remove built files (end of testing)
jpetitcolas 52ccb93
Move some dependencies out of vendors file
jpetitcolas 48250d5
Fix TextAngular issues
jpetitcolas b30c4cc
Use ui-select 0.18.1
jpetitcolas f95cfe4
Make SASS more independent of file structure
jpetitcolas 4a435b1
Remove useless import
jpetitcolas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
global.rangy = require('../../node_modules/rangy/lib/rangy-core'); | ||
global.rangy = require('../../node_modules/rangy/lib/rangy-selectionsaverestore'); | ||
global.rangy = require('rangy'); | ||
global.rangy = require('rangy/lib/rangy-selectionsaverestore'); | ||
global.numeral = require('numeral'); | ||
|
||
require('../../node_modules/angular/angular.js'); | ||
require('angular'); | ||
require('angular-ui-router'); | ||
require('../../node_modules/textangular/dist/textAngular-sanitize'); | ||
require('angular-ui-codemirror'); | ||
require('textangular/dist/textAngular-sanitize'), | ||
require('textangular'); | ||
require('nginflection'); | ||
require('ui-select'); | ||
require('angular-translate'); | ||
|
||
require('../../node_modules/angular-numeraljs/dist/angular-numeraljs'); | ||
require('angular-numeraljs'); | ||
require('angular-ui-bootstrap/dist/ui-bootstrap-tpls'); | ||
require('../../node_modules/ng-file-upload/dist/ng-file-upload'); | ||
require('ng-file-upload'); | ||
|
||
global._ = require('underscore'); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To fix some strict DI errors, preventing JSON field to be colored.