Skip to content

Commit

Permalink
Merge pull request #13 from dreamsicle-io/develop
Browse files Browse the repository at this point in the history
Deploys 0.0.15
  • Loading branch information
theenoahmason authored Nov 29, 2018
2 parents 1026b86 + c31f88d commit d6fca95
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,19 +132,28 @@ root
―――― ―――― /src
―――― ―――― ―――― /js
―――― ―――― ―――― ―――― /modules
―――― ―――― ―――― ―――― ―――― README.md
―――― ―――― ―――― ―――― site.js
―――― ―――― ―――― ―――― admin.js
―――― ―――― ―――― ―――― login.js
―――― ―――― ―――― ―――― customizer-preview.js
―――― ―――― ―――― ―――― customizer-controls.js
―――― ―――― ―――― /md
―――― ―――― ―――― ―――― DESCRIPTION.js
―――― ―――― ―――― ―――― FAQ.js
―――― ―――― ―――― ―――― COPYRIGHT.js
―――― ―――― ―――― ―――― CHANGELOG.js
―――― ―――― ―――― /sass
―――― ―――― ―――― ―――― /modules
―――― ―――― ―――― ―――― ―――― README.md
―――― ―――― ―――― ―――― site.scss
―――― ―――― ―――― ―――― admin.scss
―――― ―――― ―――― ―――― login.scss
―――― ―――― ―――― ―――― editor.scss
―――― ―――― ―――― ―――― customizer-preview.scss
―――― ―――― ―――― ―――― customizer-controls.scss
―――― ―――― ―――― /images
―――― ―――― ―――― ―――― test-icon.svg
―――― ―――― ―――― ―――― README.md
```

### Build Files
Expand All @@ -158,6 +167,8 @@ root
―――― ―――― ―――― ―――― site.min.js.map
―――― ―――― ―――― ―――― admin.min.js
―――― ―――― ―――― ―――― admin.min.js.map
―――― ―――― ―――― ―――― login.min.js
―――― ―――― ―――― ―――― login.min.js.map
―――― ―――― ―――― ―――― customizer-preview.min.js
―――― ―――― ―――― ―――― customizer-preview.min.js.map
―――― ―――― ―――― ―――― customizer-controls.min.js
Expand All @@ -167,14 +178,15 @@ root
―――― ―――― ―――― ―――― site.min.css.map
―――― ―――― ―――― ―――― admin.min.css
―――― ―――― ―――― ―――― admin.min.css.map
―――― ―――― ―――― ―――― login.min.css
―――― ―――― ―――― ―――― login.min.css.map
―――― ―――― ―――― ―――― editor.min.css
―――― ―――― ―――― ―――― editor.min.css.map
―――― ―――― ―――― ―――― customizer-preview.min.css
―――― ―――― ―――― ―――― customizer-preview.min.css.map
―――― ―――― ―――― ―――― customizer-controls.min.css
―――― ―――― ―――― ―――― customizer-controls.min.css.map
―――― ―――― ―――― /images
―――― ―――― ―――― ―――― test-icon.svg (optimized but not renamed)
―――― /languages
―――― ―――― {textdomain}.pot
―――― README.md
Expand Down
Empty file removed package/assets/src/js/README.md
Empty file.
Empty file removed package/assets/src/sass/README.md
Empty file.
8 changes: 4 additions & 4 deletions package/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ gulp.task('build:vendor', gulp.series('build:css:vendor', 'build:js:vendor', 'bu
gulp.task('build:sass', function sassBuilder() {
const outputStyle = (args.env === 'production') ? 'compressed' : 'expanded';
return gulp.src(['./assets/src/sass/*.s+(a|c)ss'])
.pipe(cache('build:sass'))
.pipe(sourcemaps.init({ loadMaps: true }))
.pipe(sass({ includePaths: ['node_modules'], outputStyle: outputStyle, cascade: false })
.on('error', function(err) { console.error(err); this.emit('end'); }))
.pipe(cache('build:sass'))
.pipe(sourcemaps.init({ loadMaps: true }))
.pipe(autoprefixer({ browsers: ['last 5 versions', 'ie >= 9'] }))
.pipe(rename({ suffix: '.min' }))
.pipe(sourcemaps.write('./'))
Expand Down Expand Up @@ -302,9 +302,9 @@ gulp.task('build:js', function jsBuilder() {
gulp.task('build:pot', function potBuilder() {
const pkg = JSON.parse(fs.readFileSync('./package.json'));
return gulp.src(['./**/*.php', '!./+(vendor|node_modules|assets|languages)/**'])
.pipe(cache('build:pot'))
.pipe(wpPot({ domain: pkg.name })
.on('error', function(err) { console.error(err); this.emit('end'); }))
.pipe(cache('build:pot'))
.pipe(gulp.dest('./languages/' + pkg.name + '.pot'))
.pipe(debug({ title: 'build:pot' }));
});
Expand Down Expand Up @@ -444,9 +444,9 @@ gulp.task('build:package:readme:header', function packageReadmeHeaderBuilder(don
*/
gulp.task('build:package:readme:content', function packageReadmeContentBuilder(done) {
return gulp.src(['./README.md', './assets/src/md/+(DESCRIPTION|FAQ|COPYRIGHT|CHANGELOG).md'])
.pipe(cache('build:package:readme:content'))
.pipe(order(['README.md', 'DESCRIPTION.md', 'FAQ.md', 'COPYRIGHT.md', 'CHANGELOG.md']))
.pipe(concat('README.md'))
.pipe(cache('build:package:readme:content'))
.pipe(gulp.dest('./'))
.pipe(debug({ title: 'build:package:readme:content' }));
});
Expand Down
Empty file removed package/includes/README.md
Empty file.
Empty file removed package/languages/README.md
Empty file.

0 comments on commit d6fca95

Please sign in to comment.