Skip to content

Webpack only #193

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

Merged
merged 60 commits into from
Nov 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
6f65cb6
Try remove tests to karma and webpack
dyuvzhenko Nov 11, 2017
4c7c8f6
Fixed path
dyuvzhenko Nov 11, 2017
e47318c
Fixed path for karma
dyuvzhenko Nov 11, 2017
5c29ec5
Fixed paths
dyuvzhenko Nov 11, 2017
9898137
Added key --single-run
dyuvzhenko Nov 11, 2017
ef1a67f
Changed browser for linux in karma.conf
dyuvzhenko Nov 11, 2017
5f0a6ae
Added build before start testing
dyuvzhenko Nov 11, 2017
5677c25
Change config
dyuvzhenko Nov 11, 2017
f622243
Continue of npm-test
dyuvzhenko Nov 12, 2017
c1a4cca
Returned preprocessors
dyuvzhenko Nov 12, 2017
c9ea904
npm test refactoring, dependencies upgrading
dhilt Nov 12, 2017
41df64c
Split build on prod and dev
dyuvzhenko Nov 13, 2017
a149be1
Added removing of /temp
dyuvzhenko Nov 13, 2017
74acb55
Rewrite removing temp folder with clean-webpack-plugin
dyuvzhenko Nov 13, 2017
1874961
prod build dist fix
dhilt Nov 13, 2017
d7f60c0
Merge branch 'master' of https://github.com/BitDen/ui-scroll
dhilt Nov 13, 2017
73f85f2
config improvement
dhilt Nov 13, 2017
2c2e9e6
Removed BannerPlugin to end of plugins
dyuvzhenko Nov 13, 2017
6904779
Added jshint-loader
dyuvzhenko Nov 13, 2017
baa18e5
Added copying files
dyuvzhenko Nov 13, 2017
fb7f7f0
prod build & test
dhilt Nov 13, 2017
a1ae6f7
Jshint for prod and dev build
dyuvzhenko Nov 14, 2017
e708e0f
Fixed regexp, probably
dyuvzhenko Nov 14, 2017
fab01d4
Fixed regexp (2)
dyuvzhenko Nov 14, 2017
5d00631
jshint-loader + babel-loader work together
dhilt Nov 14, 2017
9b14a31
force npm fail on jshint errors
dhilt Nov 14, 2017
2fd0009
respect .jshintrc
dhilt Nov 14, 2017
5408462
no need to resolve
dhilt Nov 14, 2017
92544d6
immediate restart if watch has been triggered
dhilt Nov 14, 2017
f5ceb4b
How karma can rebuild
dyuvzhenko Nov 14, 2017
b535ac1
Trying do rebuild after changes in ./src
dyuvzhenko Nov 14, 2017
2f59605
development mode works without ./temp
dhilt Nov 14, 2017
fc4af26
Merge branch 'master' of https://github.com/BitDen/ui-scroll
dhilt Nov 14, 2017
85f435e
Added tests on ./test/*Spec.js
dyuvzhenko Nov 14, 2017
3ae8a77
dev plugins purge
dhilt Nov 14, 2017
5ad84a1
New .jshintrc
dyuvzhenko Nov 14, 2017
2381e77
Removed comments
dyuvzhenko Nov 14, 2017
bdb65e9
Added test files to entry-point
dyuvzhenko Nov 15, 2017
1a60faf
Start make devServer
dyuvzhenko Nov 15, 2017
2c0b79a
WebpackDevServer and including .js-files
dyuvzhenko Nov 15, 2017
96b4e1d
Rewrite path with historyapifallback to ./demo
dyuvzhenko Nov 15, 2017
9ada21c
Added keys for jshint
dyuvzhenko Nov 15, 2017
1bd7bf6
Added new npm-script 'hint-tests'
dyuvzhenko Nov 15, 2017
eb6e76d
jshint tests refactoring and improvements
dhilt Nov 16, 2017
3ce4e2c
Added publicPath
dyuvzhenko Nov 16, 2017
7310d16
fix dev-server in-memory dist serving
dhilt Nov 17, 2017
b6a74b7
cleanup
dhilt Nov 17, 2017
195d109
Change npm start
dyuvzhenko Nov 17, 2017
aa429bf
Added tests to build-script
dyuvzhenko Nov 17, 2017
1909652
build processes are less verbose
dhilt Nov 17, 2017
ecb8e2e
New env and little fix in npmScript
dyuvzhenko Nov 17, 2017
1da0dca
Removed webpack-config
dyuvzhenko Nov 17, 2017
d40d9be
Simplified npmScripts
dyuvzhenko Nov 18, 2017
04bbcf6
jshnit process refactoring
dhilt Nov 18, 2017
7d0d181
webpack dev serverer proxy update
dhilt Nov 18, 2017
98348b8
npm scripts definition fix
dhilt Nov 18, 2017
9734117
travis upd
dhilt Nov 18, 2017
73fedd1
Merge changes from original repo
dyuvzhenko Nov 19, 2017
6c023f3
merge fixes
dhilt Nov 19, 2017
955ec16
jqLiteExtras .height() tests update due to changes in jQuery 3
dhilt Nov 19, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
.idea
public
node_modules
temp
/nbproject/private/
*.log
*.log
.idea
45 changes: 23 additions & 22 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
{
"boss": true,
"browser": true,
"eqnull": true,
"expr": true,
"esversion": 6,
"immed": true,
"laxbreak": true,
"loopfunc": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": true,
"smarttabs": true,
"strict": true,
"sub": true,
"trailing": true,
"undef": true,
"unused": true,
"globals": {
"angular": false
}
"emitErrors": true,
"boss": true,
"browser": true,
"eqnull": true,
"expr": true,
"esversion": 6,
"immed": true,
"laxbreak": true,
"loopfunc": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": true,
"smarttabs": true,
"strict": false,
"sub": true,
"trailing": true,
"undef": true,
"unused": true,
"globals": {
"angular": false
}
}
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ before_install:
- sh -e /etc/init.d/xvfb start

before_script:
- npm install -g grunt-cli
- npm install -g karma
- npm install

script:
- grunt travis
- npm run build

deploy:
provider: npm
Expand Down
159 changes: 0 additions & 159 deletions Gruntfile.js

This file was deleted.

17 changes: 7 additions & 10 deletions dist/ui-scroll-grid.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ui-scroll-grid.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/ui-scroll-grid.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ui-scroll-grid.min.js.map

Large diffs are not rendered by default.

Loading