Skip to content

Commit

Permalink
feat(concat.js): Rename ui-grid.base.js to ui-grid.core.js.
Browse files Browse the repository at this point in the history
After going through the ui-grid documentation, I realized that core makes more sense as the proper
name for the main UI-Grid file and decided to rename it as such.

BREAKING CHANGE: ui-grid.base.js has been rename to ui-grid.core.js. Also, ui-grid.core.js no longer
contains most of the language files available to UI-Grid. It only contains english as that is the
default language of the grid. See tutorials for examples.
  • Loading branch information
Portugal, Marcelo authored and mportuga committed Mar 16, 2018
1 parent 92a0370 commit 18c5ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt/concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const getLanguages = p => fs.readdirSync(p).filter(f => fs.statSync(path.join(p,
function getFiles() {
const files = {
'<%= dist %>/release/<%= pkg.name %>.js': ['src/js/core/bootstrap.js', 'src/js/**/*.js', 'src/features/*/js/**/*.js', '.tmp/template.js'],
'<%= dist %>/release/<%= pkg.name %>.base.js': ['src/js/core/bootstrap.js', 'src/js/core/**/*.js', 'src/js/i18n/ui-18n.js',
'<%= dist %>/release/<%= pkg.name %>.core.js': ['src/js/core/bootstrap.js', 'src/js/core/**/*.js', 'src/js/i18n/ui-18n.js',
'src/js/i18n/en.js', '.tmp/template.js']
};
const features = getDirectories('src/features/');
Expand Down

0 comments on commit 18c5ffb

Please sign in to comment.