This repository was archived by the owner on Apr 24, 2024. It is now read-only.
Feature/update skeleton - #34
Open
lucalanca wants to merge 58 commits into
Open
Conversation
Fixes JS error reporting in gulp
Watches the js files in the components folders
Here’s an example of the change:
Assume such a folder structure:
```
src/pages
|
`- index.html
|
`- A
|
`- A.html
|
`- B
|
`- B.html
```
## Before
`index.html`: `./`
`A/A.html`: `B/`
`A/B/B.html`: `A/B/`
## After
`index.html`: `./`
`A/A.html`: `../`
`A/B/B.html`: `../../`
Fixes the relative path calculations
for presets so its much easier to add plugins and presets in the future. And its also nicer to read
Es6 transpiling
makes sure its easier to mix classes with attributes
Add Wercker support
Adds npm-debug.log to .gitignore
Replaces jade by pug.
Also moves webpack configuration to its own file for easier readability.
we still expect vendor.min.js
Only changes references on .html files.
renames vendor.min to vendor (as it is now minified with an hash).
… in src/ for browser linting.
adjusts eslint rules so that it is disabled for node but node for browser code. Adds babelrc rule that makes this possible on browser code.
As the default promotes smaller diffs.
as the default airbnb is a better default for smaller diffs.
- compresses sass compilation - removes source maps.
It now doesn’t do io calls on every invocation. Instead, this step is moved to gulp and only 1/per module io call is made per pages task run. (instead of 1/per module/invocation.
Since it was using `this.emit` the fix was convert from arrow function to function. Also, this use the recommend rest operator instead of `arguments` following the `prefer-rest-params` eslint rule.
Fix gulp handle error function
…ture/update-skeleton
…ture/update-skeleton
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
No description provided.