Skip to content

feat(*): Webpack 4 Support for Universal CSS Chunks #71

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 43 commits into from
Jun 4, 2018
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
48085a1
alpha sorting package for merge
ScriptedAlchemy May 27, 2018
69dbef4
partial package update
ScriptedAlchemy May 27, 2018
112fb03
feat(/*): Webpack 4 Support for Universal CSS Chunks
ScriptedAlchemy May 27, 2018
e1c0acb
chore(Old tests,dotfiles): Reducing initial size of PR, cleaning up d…
ScriptedAlchemy May 27, 2018
1069352
fix(src): Fixed namespacing which caused compile issues
ScriptedAlchemy May 27, 2018
cbbe10c
chore(test): Deleting old tests
ScriptedAlchemy May 28, 2018
7cb2bdb
style(/*): Lint all the things!
ScriptedAlchemy May 28, 2018
3468910
fix(package.json): Updating dependency versions for hot loading
ScriptedAlchemy May 28, 2018
3ea7666
docs(README): Updating README
ScriptedAlchemy May 28, 2018
999fa60
chore(general): General housekeeping and file removal
ScriptedAlchemy May 28, 2018
bcaa0e4
docs(README.md): Notes on beta install
ScriptedAlchemy May 28, 2018
0d7b609
docs(README): Attempting to hide old docs
ScriptedAlchemy May 28, 2018
57df669
fix(src/index.js): Loader crashes on unexpected use key type
ScriptedAlchemy May 28, 2018
2e83dd0
Merge pull request #69 from zackljackson/webpack-4
ScriptedAlchemy May 29, 2018
a3f86b8
bumping major version manually
ScriptedAlchemy May 31, 2018
42d5b0d
bumping major version manually
ScriptedAlchemy May 31, 2018
71c486d
docs(README): Adding npm next tag and releasing docs for new install
ScriptedAlchemy May 31, 2018
6898cfa
chore(package.json): Adding zack as official contributor
ScriptedAlchemy May 31, 2018
a7a384c
feat(src/index.js): Check for hot reloading before adding hot reload …
ScriptedAlchemy Jun 1, 2018
c0ad958
Merge pull request #70 from faceyspacey/hot-loading
ScriptedAlchemy Jun 1, 2018
0b36db5
Updating npm description to note webpack 4 support
ScriptedAlchemy Jun 1, 2018
50cd8a7
remove prepack script
ScriptedAlchemy Jun 1, 2018
c81bf01
docs(README): Adding API, PERKS, and examples
ScriptedAlchemy Jun 1, 2018
972e7e4
docs(README): Collapsible Content
ScriptedAlchemy Jun 1, 2018
6342e33
docs(README): All docs extracted
ScriptedAlchemy Jun 1, 2018
65edbd3
docs(README): Added badges
ScriptedAlchemy Jun 1, 2018
1aba64d
docs(README): Typos
ScriptedAlchemy Jun 1, 2018
87886fe
feat(src/index.js): Check NODE_ENV
ScriptedAlchemy Jun 1, 2018
d274442
style(src/index.js): Linting
ScriptedAlchemy Jun 1, 2018
8d55e2b
resetting package json version
ScriptedAlchemy Jun 1, 2018
42c78ea
Update README.md
ScriptedAlchemy Jun 2, 2018
5a84230
adding code owners
ScriptedAlchemy Jun 3, 2018
53e4fee
Merge remote-tracking branch 'origin/webpack-4' into webpack-4
ScriptedAlchemy Jun 3, 2018
a5826ea
Update README.md
ScriptedAlchemy Jun 3, 2018
3022171
Merge branch 'master' into webpack-4
ScriptedAlchemy Jun 4, 2018
901025e
re-enabling tests
ScriptedAlchemy Jun 4, 2018
0224acc
Merge remote-tracking branch 'origin/webpack-4' into webpack-4
ScriptedAlchemy Jun 4, 2018
46ff4dd
adding back standard-release just in case
ScriptedAlchemy Jun 4, 2018
8c36e0a
removing duplicate package
ScriptedAlchemy Jun 4, 2018
2e64852
json stringify errors
ScriptedAlchemy Jun 4, 2018
ef7ded1
adding title to readme
ScriptedAlchemy Jun 4, 2018
3484765
Update README.md
ScriptedAlchemy Jun 4, 2018
7d56a57
Update README.md
ScriptedAlchemy Jun 4, 2018
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
35 changes: 35 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"presets": [
[
"env",
{
"useBuiltIns": true,
"targets": {
"node": "6.11.5"
},
"exclude": [
"transform-async-to-generator",
"transform-regenerator"
]
}
]
],
"plugins": [
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
]
],
"env": {
"test": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}
}
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ root = true
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = tab
indent_style = space
indent_size = 4

# Matches the exact files either package.json or .travis.yml
Expand Down
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/js/**/*.js
13 changes: 0 additions & 13 deletions .eslintrc

This file was deleted.

21 changes: 21 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
generators: true,
experimentalObjectRestSpread: true
},
sourceType: 'module',
allowImportExportEverywhere: false
},
extends: ['airbnb'],
env: {
'browser': true,
},
rules: {
'no-param-reassign': 0,
'func-names': 0,
'no-underscore-dangle': 0,
'no-restricted-syntax': 0,
}
};
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# extract-css-chunks-webpack-plugin maintainers
* @faceyspacey @zackljackson
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/node_modules

/example/assets

/test/js
/coverage
/dist

/.idea
.idea
.eslintcache

.DS_Store
npm-debug.log
*.log
.eslintcache
70 changes: 0 additions & 70 deletions ExtractedModule.js

This file was deleted.

14 changes: 0 additions & 14 deletions OrderUndefinedError.js

This file was deleted.

Loading