Skip to content

Commit

Permalink
Merge pull request #13 from adorade/develop
Browse files Browse the repository at this point in the history
Add header license
  • Loading branch information
adorade authored Nov 27, 2023
2 parents bd5f459 + 89b9cee commit 91f97e8
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 25 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-stylelint-esm",
"version": "1.0.0",
"version": "1.1.0",
"description": "Gulp plugin for running Stylelint results through various reporters.",
"author": {
"name": "Adorade",
Expand Down
8 changes: 5 additions & 3 deletions src/apply-sourcemap.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* src/apply-sourcemap.js
*/
/*!
* Gulp Stylelint (v1.1.0): src/apply-sourcemap.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import { SourceMapConsumer } from 'source-map';

Expand Down
8 changes: 5 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* src/index.js
*/
/*!
* Gulp Stylelint (v1.1.0): src/index.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import PluginError from 'plugin-error';
import stylelint from 'stylelint';
Expand Down
8 changes: 5 additions & 3 deletions src/reporter-factory.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* src/reporter-factory.js
*/
/*!
* Gulp Stylelint (v1.1.0): src/reporter-factory.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import fancyLog from 'fancy-log';
import stylelint from 'stylelint';
Expand Down
8 changes: 5 additions & 3 deletions src/writer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* src/writer.js
*/
/*!
* Gulp Stylelint (v1.1.0): src/writer.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import ansiColors from 'ansi-colors';
import fs from 'node:fs';
Expand Down
8 changes: 5 additions & 3 deletions test/index.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* test/index.spec.js
*/
/*!
* Gulp Stylelint (v1.1.0): test/index.spec.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import gulp from 'gulp';
import test from 'tape';
Expand Down
8 changes: 5 additions & 3 deletions test/reporter-factory.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* test/reporter-factory.spec.js
*/
/*!
* Gulp Stylelint (v1.1.0): test/reporter-factory.spec.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import fancyLog from 'fancy-log';
import { stub } from 'sinon';
Expand Down
8 changes: 5 additions & 3 deletions test/sourcemap.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* test/sourcemap.spec.js
*/
/*!
* Gulp Stylelint (v1.1.0): test/sourcemap.spec.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import gulp from 'gulp';
import gulpCleanCss from 'gulp-clean-css';
Expand Down
8 changes: 5 additions & 3 deletions test/writer.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* test/writer.spec.js
*/
/*!
* Gulp Stylelint (v1.1.0): test/writer.spec.js
* Copyright (c) 2023 Adorade (https://github.com/adorade/gulp-stylelint-esm)
* License under MIT
* ========================================================================== */

import ansiColors from 'ansi-colors';
import { stub } from 'sinon';
Expand Down

0 comments on commit 91f97e8

Please sign in to comment.