Skip to content
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

bring component lint config presets into the repo #310

Merged
merged 267 commits into from
Sep 23, 2021
Merged

bring component lint config presets into the repo #310

merged 267 commits into from
Sep 23, 2021
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Mar 21, 2020

  1. Add origami-version GitHub Action

    When this is merged, we can have automated releases by using the release-type labels "major"/"minor"/"patch" on a pull-request before merging the pull-request.
    JakeChampion committed Mar 21, 2020
    Configuration menu
    Copy the full SHA
    beef8fc View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2020

  1. Update config.js

    Jake Champion authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    486bea4 View commit details
    Browse the repository at this point in the history
  2. Update automatic-tag-and-release.yml

    Jake Champion authored Mar 23, 2020
    Configuration menu
    Copy the full SHA
    bab7de8 View commit details
    Browse the repository at this point in the history
  3. 2.0.0

    JakeChampion committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    142eb79 View commit details
    Browse the repository at this point in the history
  4. 2.0.1

    JakeChampion committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    dbed5ca View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2020

  1. Configuration menu
    Copy the full SHA
    6b67e73 View commit details
    Browse the repository at this point in the history
  2. Update publish-to-npm.yml

    Jake Champion authored and JakeChampion committed Apr 9, 2020
    Configuration menu
    Copy the full SHA
    c988c4b View commit details
    Browse the repository at this point in the history
  3. Update automatic-tag-and-release.yml

    Jake Champion authored and JakeChampion committed Apr 9, 2020
    Configuration menu
    Copy the full SHA
    62f6d21 View commit details
    Browse the repository at this point in the history
  4. Update config.test.js

    Jake Champion authored and JakeChampion committed Apr 9, 2020
    Configuration menu
    Copy the full SHA
    5bb125e View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2020

  1. only run on prs

    JakeChampion committed Apr 27, 2020
    Configuration menu
    Copy the full SHA
    2249084 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2020

  1. Configuration menu
    Copy the full SHA
    dad22a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87feb16 View commit details
    Browse the repository at this point in the history
  3. Allow function arguments to go on a new line.

    This should be valid:
    ```scss
    .argument-newline {
    	@include baz(
    		'Lorem ipsum dolor sit amet consectetur adipisicing elit.',
    		'Lorem ipsum dolor sit amet consectetur adipisicing.'
    	);
    }
    ```
    notlee committed May 5, 2020
    Configuration menu
    Copy the full SHA
    df4be45 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1 from Financial-Times/allow-multi-line-function-…

    …uses
    
    Allow function arguments to go on a new line.
    notlee authored May 5, 2020
    Configuration menu
    Copy the full SHA
    f9d5a87 View commit details
    Browse the repository at this point in the history
  5. Allow @include oGridRespondTo after declarations.

    The output of `oGridRespondTo` is a media query.
    notlee committed May 5, 2020
    Configuration menu
    Copy the full SHA
    7130bc1 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #2 from Financial-Times/allow-o-grid-imports-after…

    …-declarations
    
    Allow `@include oGridRespondTo` after declarations.
    notlee authored May 5, 2020
    Configuration menu
    Copy the full SHA
    7b24123 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2020

  1. Allow newlines in declarations and in and round function arguments.

    This is useful for formatting functions with large arguments in a
    readable way:
    ```scss
    $some-very-very-very-large-conditional: true;
    $foreground-color: if(
    	$some-very-very-very-large-conditional == true,
    	"then each argument should go on a newline for readability",
    	"otherwise each argument could be on the same line"
    );
    ```
    
    And for formatting declarations such as grid areas in a readable
    way:
    ```scss
    .foo-grid {
    	grid-template-areas:
    		"header header header"
    		". sidebar ."
    		". main ."
    		"footer footer footer";
    }
    ```
    notlee committed May 6, 2020
    Configuration menu
    Copy the full SHA
    ba4ab50 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from Financial-Times/declaration-colon-after

    Allow newlines in declarations and in and round function arguments.
    notlee authored May 6, 2020
    Configuration menu
    Copy the full SHA
    93b9c2b View commit details
    Browse the repository at this point in the history

Commits on May 27, 2020

  1. Configuration menu
    Copy the full SHA
    6f80d57 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ca331c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c4ce8a5 View commit details
    Browse the repository at this point in the history
  4. Auto merge dependabot dev dependency PRs

    notlee authored and JakeChampion committed May 27, 2020
    Configuration menu
    Copy the full SHA
    496e3fe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    58d7838 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    15aec56 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3d12f57 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f0fbeb9 View commit details
    Browse the repository at this point in the history
  9. Add Github Action to auto approve dependabot

    So it may auto-merge dev dependencies: #55
    notlee committed May 27, 2020
    Configuration menu
    Copy the full SHA
    ee48a63 View commit details
    Browse the repository at this point in the history
  10. Add Github Action to auto approve dependabot

    So it may auto-merge dev dependencies: #55
    notlee authored and JakeChampion committed May 27, 2020
    Configuration menu
    Copy the full SHA
    f3d8bba View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c981e72 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2020

  1. Configuration menu
    Copy the full SHA
    9f6f074 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2020

  1. Add Github Action to apply Origami type label

    We we can track issues on our project board: #43
    notlee authored and JakeChampion committed May 29, 2020
    Configuration menu
    Copy the full SHA
    b200fbc View commit details
    Browse the repository at this point in the history
  2. Add Github Action to apply Origami type label

    We we can track issues on our project board: #43
    notlee committed May 29, 2020
    Configuration menu
    Copy the full SHA
    88e6a0d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #8 from Financial-Times/apply-labels

    Add Github Action to apply Origami type label
    JakeChampion authored May 29, 2020
    Configuration menu
    Copy the full SHA
    c56f56e View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2020

  1. initial commit

    chee committed Jun 1, 2020
    Configuration menu
    Copy the full SHA
    2000585 View commit details
    Browse the repository at this point in the history
  2. Create npm-cit.yml

    chee authored Jun 1, 2020
    Configuration menu
    Copy the full SHA
    a510b60 View commit details
    Browse the repository at this point in the history
  3. add origami .github files

    chee committed Jun 1, 2020
    Configuration menu
    Copy the full SHA
    a8893b1 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    chee authored Jun 1, 2020
    Configuration menu
    Copy the full SHA
    5e4c111 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d972660 View commit details
    Browse the repository at this point in the history
  6. Add origami.json (#3)

    chee authored Jun 1, 2020
    Configuration menu
    Copy the full SHA
    6f8be1b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7e86207 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2020

  1. Configuration menu
    Copy the full SHA
    39c8986 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2020

  1. Merge pull request #9 from Financial-Times/dependabot/npm_and_yarn/st…

    …ylelint-order-4.1.0
    
    Bump stylelint-order from 4.0.0 to 4.1.0
    notlee authored Jun 3, 2020
    Configuration menu
    Copy the full SHA
    37dab92 View commit details
    Browse the repository at this point in the history
  2. Improve licence linting (#6)

    chee authored Jun 3, 2020
    Configuration menu
    Copy the full SHA
    379e0fb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f4f10a3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    af4d934 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2020

  1. Configuration menu
    Copy the full SHA
    9bf064f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac28255 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #10 from Financial-Times/dependabot/npm_and_yarn/m…

    …ocha-8.0.1
    
    Bump mocha from 7.2.0 to 8.0.1
    notlee authored Jun 11, 2020
    Configuration menu
    Copy the full SHA
    5be7d95 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #24 from Financial-Times/dependabot/npm_and_yarn/m…

    …ocha-8.0.1
    
    Bump mocha from 7.2.0 to 8.0.1
    notlee authored Jun 11, 2020
    Configuration menu
    Copy the full SHA
    4850439 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2020

  1. Configuration menu
    Copy the full SHA
    34e0715 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11 from Financial-Times/dependabot/npm_and_yarn/s…

    …tylelint-scss-3.18.0
    
    Bump stylelint-scss from 3.17.2 to 3.18.0
    notlee authored Jun 18, 2020
    Configuration menu
    Copy the full SHA
    d180dc9 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2020

  1. Configuration menu
    Copy the full SHA
    3babd3f View commit details
    Browse the repository at this point in the history
  2. make dependabot ignore snyk updates

    snyk does too many updates and it makes for too many pull-requests for origami to review
    JakeChampion committed Jun 29, 2020
    Configuration menu
    Copy the full SHA
    6e17983 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2020

  1. Configuration menu
    Copy the full SHA
    f8fd324 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d567fa View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2020

  1. [Security] Bump lodash from 4.17.15 to 4.17.19

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. **This update includes a security fix.**
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](lodash/lodash@4.17.15...4.17.19)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored and JakeChampion committed Jul 16, 2020
    Configuration menu
    Copy the full SHA
    d60b38d View commit details
    Browse the repository at this point in the history
  2. [Security] Bump lodash from 4.17.15 to 4.17.19

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. **This update includes a security fix.**
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](lodash/lodash@4.17.15...4.17.19)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored and JakeChampion committed Jul 16, 2020
    Configuration menu
    Copy the full SHA
    3579dd2 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2020

  1. Configuration menu
    Copy the full SHA
    38b67ff View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2020

  1. Configuration menu
    Copy the full SHA
    e1fcab6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0cff2d2 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2020

  1. Configuration menu
    Copy the full SHA
    0948ef5 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2020

  1. Configuration menu
    Copy the full SHA
    f61d863 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    01ce651 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2020

  1. Configuration menu
    Copy the full SHA
    e57fb5c View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2020

  1. Add new rule readme-has-general-usage.

    Check for the presence of a link to general component usage
    documentation "https://origami.ft.com/docs/components".
    
    Relates to: #59
    
    Fixes: Financial-Times/remark-preset-lint-origami-component#13
    notlee committed Aug 11, 2020
    Configuration menu
    Copy the full SHA
    de5b87a View commit details
    Browse the repository at this point in the history
  2. Update test/invalid/invalid-missing-general-usage/README.md

    Co-authored-by: Jake Champion <[email protected]>
    notlee and JakeChampion authored Aug 11, 2020
    Configuration menu
    Copy the full SHA
    ffdecc0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7af4e4e View commit details
    Browse the repository at this point in the history
  4. Merge branch 'general-use-readme' of github.com:Financial-Times/remar…

    …k-preset-lint-origami-component into general-use-readme
    notlee committed Aug 11, 2020
    Configuration menu
    Copy the full SHA
    999259b View commit details
    Browse the repository at this point in the history
  5. Merge pull request #14 from Financial-Times/general-use-readme

    Add new rule `readme-has-general-usage`.
    notlee authored Aug 11, 2020
    Configuration menu
    Copy the full SHA
    58962de View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2020

  1. Configuration menu
    Copy the full SHA
    f8bee4e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    34debb5 View commit details
    Browse the repository at this point in the history
  3. Delete automerge.yml

    JakeChampion authored Aug 25, 2020
    Configuration menu
    Copy the full SHA
    4bbab78 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cdab028 View commit details
    Browse the repository at this point in the history
  5. add hack for vscode-remark-lint (#16)

    * remove stray slash
    
    * rewrite check for bower name existence
    
    * add a hack for remark-lint
    chee authored Aug 25, 2020
    Configuration menu
    Copy the full SHA
    a117026 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2020

  1. Configuration menu
    Copy the full SHA
    967c52c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    64258af View commit details
    Browse the repository at this point in the history
  3. Update dependabot.yml

    JakeChampion authored Aug 26, 2020
    Configuration menu
    Copy the full SHA
    fe63042 View commit details
    Browse the repository at this point in the history
  4. Delete config.yml

    JakeChampion authored Aug 26, 2020
    Configuration menu
    Copy the full SHA
    12e656d View commit details
    Browse the repository at this point in the history
  5. Create dependabot.yml

    JakeChampion authored Aug 26, 2020
    Configuration menu
    Copy the full SHA
    ff1fafe View commit details
    Browse the repository at this point in the history
  6. Create automerge.yml

    JakeChampion authored Aug 26, 2020
    Configuration menu
    Copy the full SHA
    71518fa View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    94ab63a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fdcf363 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3712d3d View commit details
    Browse the repository at this point in the history
  10. Create dependabot.yml

    JakeChampion committed Aug 26, 2020
    Configuration menu
    Copy the full SHA
    877ffce View commit details
    Browse the repository at this point in the history
  11. Create automerge.yml

    JakeChampion committed Aug 26, 2020
    Configuration menu
    Copy the full SHA
    60f2b35 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f3c9f09 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    720907b View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    6dbb2c5 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    fa01f30 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    05e90a8 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2020

  1. Configuration menu
    Copy the full SHA
    12611b8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8ccd028 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. Configuration menu
    Copy the full SHA
    455c1c3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c1f6584 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    514a77c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e428bfe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1f4ff36 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2020

  1. Configuration menu
    Copy the full SHA
    a834cf6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c145a3a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    21b55f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    220f01b View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Configuration menu
    Copy the full SHA
    18ebd4f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    74401aa View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. Configuration menu
    Copy the full SHA
    fa57b70 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eb552f3 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2020

  1. Configuration menu
    Copy the full SHA
    034c559 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31573b9 View commit details
    Browse the repository at this point in the history
  3. Bump pascalgn/automerge-action from v0.9.0 to v0.10.0 (#39)

    Bumps [pascalgn/automerge-action](https://github.com/pascalgn/automerge-action) from v0.9.0 to v0.10.0.
    - [Release notes](https://github.com/pascalgn/automerge-action/releases)
    - [Commits](pascalgn/automerge-action@v0.9.0...a6eda95)
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 18, 2020
    Configuration menu
    Copy the full SHA
    203fe51 View commit details
    Browse the repository at this point in the history
  4. Update automatic-tag-and-release, consistent with components.

    I'm wondering if it will somehow help this issue, though
    I don't see how it would.
    Financial-Times/remark-preset-lint-origami-component#24
    
    Since `fetch-depth: 0` fetches all tags and branches, I wonder
    if the step is needed at all
    https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
    notlee committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    07f6cc1 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #28 from Financial-Times/update-automatic-tag-and-…

    …release
    
    Update `automatic-tag-and-release`, consistent with components.
    notlee authored Sep 18, 2020
    Configuration menu
    Copy the full SHA
    4042cec View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2020

  1. Configuration menu
    Copy the full SHA
    e662da6 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2020

  1. Configuration menu
    Copy the full SHA
    042036b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    95845f6 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2020

  1. Configuration menu
    Copy the full SHA
    8176eaa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6ecb39 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2020

  1. Configuration menu
    Copy the full SHA
    dd02343 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7724f4a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    70442a9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0d19100 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9eadb28 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2020

  1. Configuration menu
    Copy the full SHA
    1410012 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2020

  1. Configuration menu
    Copy the full SHA
    67c6842 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e84b3c6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2e7743 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6c9d0db View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    70df589 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2020

  1. Configuration menu
    Copy the full SHA
    e5656f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bca1366 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ab75477 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2020

  1. Configuration menu
    Copy the full SHA
    99382e9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    12942eb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1201e23 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2020

  1. Configuration menu
    Copy the full SHA
    7334d01 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2020

  1. Configuration menu
    Copy the full SHA
    420454b View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2020

  1. Configuration menu
    Copy the full SHA
    56b8743 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1616312 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2020

  1. Configuration menu
    Copy the full SHA
    dc4f1a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bf0a40d View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2020

  1. Configuration menu
    Copy the full SHA
    ee8126f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c6154f2 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2020

  1. Configuration menu
    Copy the full SHA
    5ceaf1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    69a6d9b View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2020

  1. Configuration menu
    Copy the full SHA
    6c542e6 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2020

  1. Configuration menu
    Copy the full SHA
    d090de6 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2020

  1. Add tests to confirm our linting extectations.

    These tests will be usefull to confirm updating rules will not
    effect our linting in unexpected ways and also to help us migrate
    from stylelint in the future if we need to (the sasslint migration
    was a bit tricky).
    
    These tests were previously part of origami build tools:
    - File: https://github.com/Financial-Times/origami-build-tools/blob/a910eaae22e2e0aa47e2c64fe13eaf3d2a7a0c9a/test/unit/tasks/verify-sass.test.js#L87
    - PR: Financial-Times/origami-build-tools#727
    notlee committed Nov 26, 2020
    Configuration menu
    Copy the full SHA
    d427de4 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2020

  1. Merge pull request #31 from Financial-Times/add-lint-tests

    Add tests to confirm our linting extectations.
    notlee authored Nov 27, 2020
    Configuration menu
    Copy the full SHA
    82ad4a4 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2020

  1. Configuration menu
    Copy the full SHA
    6d66958 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2020

  1. Configuration menu
    Copy the full SHA
    f5c4b9d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b361563 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ef04198 View commit details
    Browse the repository at this point in the history
  4. build(deps): npm audit fix

    Summary:
    - Updated packages: 1
    - Added packages: 0
    - Removed packages: 0
    
    Fixed vulnerabilities:
    - ini: "Prototype Pollution" (https://npmjs.com/advisories/1589)
    actions-user authored and JakeChampion committed Dec 11, 2020
    Configuration menu
    Copy the full SHA
    ac31cf3 View commit details
    Browse the repository at this point in the history
  5. build(deps): npm audit fix

    Summary:
    - Updated packages: 1
    - Added packages: 0
    - Removed packages: 0
    
    Fixed vulnerabilities:
    - ini: "Prototype Pollution" (https://npmjs.com/advisories/1589)
    actions-user authored and JakeChampion committed Dec 11, 2020
    Configuration menu
    Copy the full SHA
    5df4aef View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2020

  1. Configuration menu
    Copy the full SHA
    a33b6a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    74e758b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4bebb00 View commit details
    Browse the repository at this point in the history
  4. Add publish to npm workflow

    The `automatic-tag-and-release` workflow creates a GitHub release
    based on which of our Github release labels have been applied to
    a merged PR, and comments on the PR to say the release has happened.
    However it does not actually do the publishing to npm. That means
    the last two releases of `remark-preset-lint-origami-component`
    were not published to npm but looked as if they were. Including
    this PR to try fixing the README name warning in Github:
    Financial-Times/remark-preset-lint-origami-component#37
    notlee committed Dec 17, 2020
    Configuration menu
    Copy the full SHA
    e425e04 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #42 from Financial-Times/publish-workflow

    Add publish to npm workflow
    notlee authored Dec 17, 2020
    Configuration menu
    Copy the full SHA
    b2adb7c View commit details
    Browse the repository at this point in the history
  6. Correct package.json version.

    This PR is really just to make a new release and hope the Github
    workflow `remark-preset-lint-origami-component` runs and updates
    this version number again.
    notlee committed Dec 17, 2020
    Configuration menu
    Copy the full SHA
    6e4dbf2 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #43 from Financial-Times/version

    Correct package.json version.
    
    This is really just to make a new release and hope the Github workflow 
    ` publish-to-npm` runs and updates this version number again.
    notlee authored Dec 17, 2020
    Configuration menu
    Copy the full SHA
    8911e16 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    318b738 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #44 from Financial-Times/publish-workflow-name

    Remove whitespace from action name
    notlee authored Dec 17, 2020
    Configuration menu
    Copy the full SHA
    6732699 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2020

  1. Configuration menu
    Copy the full SHA
    f385f1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    22d5894 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c91334 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2020

  1. Configuration menu
    Copy the full SHA
    b6baf91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7cc20f9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9575f05 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2021

  1. update the test workflow to use branch named main (#48)

    we changed the default branch of this project but missed this workflow during that work.
    JakeChampion authored Jan 4, 2021
    Configuration menu
    Copy the full SHA
    654615d View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2021

  1. Configuration menu
    Copy the full SHA
    20f5f8f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67e7a9e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c54ef42 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0c4d6f0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b5e07bc View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2021

  1. Configuration menu
    Copy the full SHA
    e6ecb6e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a65c151 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2819ced View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2021

  1. Configuration menu
    Copy the full SHA
    b992404 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2021

  1. Add ability to publish prereleases with a different dist-tag

    Prior to this change, every release would be given the dist-tag `latest`, which is not what we want. We only want stable releases to be given the `latest` dist-tag
    JakeChampion committed Jan 22, 2021
    Configuration menu
    Copy the full SHA
    85523fd View commit details
    Browse the repository at this point in the history
  2. Add ability to publish prereleases with a different dist-tag

    Prior to this change, every release would be given the dist-tag `latest`, which is not what we want. We only want stable releases to be given the `latest` dist-tag
    JakeChampion committed Jan 22, 2021
    Configuration menu
    Copy the full SHA
    7eb0330 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2021

  1. Configuration menu
    Copy the full SHA
    01fb8d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b50bf25 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5c64f28 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2021

  1. Configuration menu
    Copy the full SHA
    833704b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8aeeb82 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2021

  1. Configuration menu
    Copy the full SHA
    afbe525 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0bc0885 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e8a471b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e5eadae View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2021

  1. Configuration menu
    Copy the full SHA
    cfc2afb View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2021

  1. Configuration menu
    Copy the full SHA
    5a0954e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ccde5b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    656b323 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2021

  1. simplify our dependabot auto-merge system

    This replaces the complex custom logic in the automerge.yml workflow with GitHubs native automerge functionality
    JakeChampion committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    a2bad40 View commit details
    Browse the repository at this point in the history
  2. simplify our dependabot auto-merge system

    This replaces the complex custom logic in the automerge.yml workflow with GitHubs native automerge functionality
    JakeChampion committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    fd4e69c View commit details
    Browse the repository at this point in the history
  3. simplify our dependabot auto-merge system

    This replaces the complex custom logic in the automerge.yml workflow with GitHubs native automerge functionality
    JakeChampion committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    e964dee View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2021

  1. Configuration menu
    Copy the full SHA
    7f631d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6426407 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a29db5f View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2021

  1. Bump mocha from 8.3.0 to 8.3.1 (#59)

    Bumps [mocha](https://github.com/mochajs/mocha) from 8.3.0 to 8.3.1.
    - [Release notes](https://github.com/mochajs/mocha/releases)
    - [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
    - [Commits](mochajs/mocha@v8.3.0...v8.3.1)
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 8, 2021
    Configuration menu
    Copy the full SHA
    8cbedc2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    96c2e2a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #50 from Financial-Times/dependabot/npm_and_yarn/m…

    …ocha-8.3.1
    
    Bump mocha from 8.3.0 to 8.3.1
    origamiserviceuser authored Mar 8, 2021
    Configuration menu
    Copy the full SHA
    a910709 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2021

  1. Configuration menu
    Copy the full SHA
    454e3cf View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

  1. use pull_request_target and not pull_request for the safe workflows

    We have workflows that currently fail to run correctly for pull-requests from forks or pull-requests from dependabot. The reason is because those workflows are being triggered by the 'pull_request' event, which does will use a restricted github api token for pull-requests from forks or dependabot for security reasons.
    
    For our workflows which are 'safe' (meaning they do not checkout the code or execute the code in the repository), we can change their trigger from 'pull_request' to 'pull_request_target', which uses a github api token with more permissions, specifically it has permission to read/use secrets, which are the things are workflows require.
    
    Our workflows are safe, they do not checkout or execute the code from the repository, so we should change to using `pull_request_target` to make our workflows work for dependabot and pull-requests from forks.
    JakeChampion committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    b2d4c0d View commit details
    Browse the repository at this point in the history
  2. Bump mocha from 8.3.1 to 8.3.2 (#60)

    Bumps [mocha](https://github.com/mochajs/mocha) from 8.3.1 to 8.3.2.
    - [Release notes](https://github.com/mochajs/mocha/releases)
    - [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
    - [Commits](mochajs/mocha@v8.3.1...v8.3.2)
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 15, 2021
    Configuration menu
    Copy the full SHA
    f48303c View commit details
    Browse the repository at this point in the history
  3. use pull_request_target and not pull_request for the safe workflows

    We have workflows that currently fail to run correctly for pull-requests from forks or pull-requests from dependabot. The reason is because those workflows are being triggered by the 'pull_request' event, which does will use a restricted github api token for pull-requests from forks or dependabot for security reasons.
    
    For our workflows which are 'safe' (meaning they do not checkout the code or execute the code in the repository), we can change their trigger from 'pull_request' to 'pull_request_target', which uses a github api token with more permissions, specifically it has permission to read/use secrets, which are the things are workflows require.
    
    Our workflows are safe, they do not checkout or execute the code from the repository, so we should change to using `pull_request_target` to make our workflows work for dependabot and pull-requests from forks.
    JakeChampion committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    f1fafc1 View commit details
    Browse the repository at this point in the history
  4. use pull_request_target and not pull_request for the safe workflows

    We have workflows that currently fail to run correctly for pull-requests from forks or pull-requests from dependabot. The reason is because those workflows are being triggered by the 'pull_request' event, which does will use a restricted github api token for pull-requests from forks or dependabot for security reasons.
    
    For our workflows which are 'safe' (meaning they do not checkout the code or execute the code in the repository), we can change their trigger from 'pull_request' to 'pull_request_target', which uses a github api token with more permissions, specifically it has permission to read/use secrets, which are the things are workflows require.
    
    Our workflows are safe, they do not checkout or execute the code from the repository, so we should change to using `pull_request_target` to make our workflows work for dependabot and pull-requests from forks.
    JakeChampion committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    9fc79a1 View commit details
    Browse the repository at this point in the history
  5. use pull_request_target and not pull_request for the safe workflows (#63

    )
    
    use pull_request_target and not pull_request for the safe workflows
    JakeChampion authored Mar 15, 2021
    Configuration menu
    Copy the full SHA
    bb5c5f2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ded1d22 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. Bump hmarr/auto-approve-action

    Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action) from bca9db08da72b576ae3273e776e7ccf3f0a36e12 to 2.1.0. This release includes the previously tagged commit.
    - [Release notes](https://github.com/hmarr/auto-approve-action/releases)
    - [Commits](hmarr/auto-approve-action@bca9db0...5d04a5c)
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 17, 2021
    Configuration menu
    Copy the full SHA
    5a92074 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #54 from Financial-Times/dependabot/github_actions…

    …/hmarr/auto-approve-action-5d04a5ca6da9aeb8ca9f31a5239b96fc3e003029
    
    Bump hmarr/auto-approve-action from bca9db08da72b576ae3273e776e7ccf3f0a36e12 to 2.1.0
    origamiserviceuser authored Mar 17, 2021
    Configuration menu
    Copy the full SHA
    7dec072 View commit details
    Browse the repository at this point in the history
  3. Bump hmarr/auto-approve-action (#64)

    Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action) from bca9db08da72b576ae3273e776e7ccf3f0a36e12 to 2.1.0. This release includes the previously tagged commit.
    - [Release notes](https://github.com/hmarr/auto-approve-action/releases)
    - [Commits](hmarr/auto-approve-action@bca9db0...5d04a5c)
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 17, 2021
    Configuration menu
    Copy the full SHA
    f902204 View commit details
    Browse the repository at this point in the history
  4. Bump hmarr/auto-approve-action

    Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action) from bca9db08da72b576ae3273e776e7ccf3f0a36e12 to 2.1.0. This release includes the previously tagged commit.
    - [Release notes](https://github.com/hmarr/auto-approve-action/releases)
    - [Commits](hmarr/auto-approve-action@bca9db0...5d04a5c)
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 17, 2021
    Configuration menu
    Copy the full SHA
    2bee790 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #58 from Financial-Times/dependabot/github_actions…

    …/hmarr/auto-approve-action-5d04a5ca6da9aeb8ca9f31a5239b96fc3e003029
    
    Bump hmarr/auto-approve-action from bca9db08da72b576ae3273e776e7ccf3f0a36e12 to 2.1.0
    origamiserviceuser authored Mar 17, 2021
    Configuration menu
    Copy the full SHA
    dff8473 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2021

  1. Configuration menu
    Copy the full SHA
    86daa4f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #59 from Financial-Times/dependabot/github_actions…

    …/ybiquitous/npm-audit-fix-action-v2.1.7
    
    Bump ybiquitous/npm-audit-fix-action from v2.1.6 to v2.1.7
    origamiserviceuser authored Apr 5, 2021
    Configuration menu
    Copy the full SHA
    cddd132 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cdaebe8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #55 from Financial-Times/dependabot/github_actions…

    …/ybiquitous/npm-audit-fix-action-v2.1.7
    
    Bump ybiquitous/npm-audit-fix-action from v2.1.6 to v2.1.7
    origamiserviceuser authored Apr 5, 2021
    Configuration menu
    Copy the full SHA
    dbc2672 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2021

  1. Configuration menu
    Copy the full SHA
    627b403 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6852fe View commit details
    Browse the repository at this point in the history
  3. Merge pull request #60 from Financial-Times/dependabot/github_actions…

    …/ybiquitous/npm-audit-fix-action-v3
    
    Bump ybiquitous/npm-audit-fix-action from v2.1.7 to v3
    origamiserviceuser authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    874ef72 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #56 from Financial-Times/dependabot/github_actions…

    …/ybiquitous/npm-audit-fix-action-v3
    
    Bump ybiquitous/npm-audit-fix-action from v2.1.7 to v3
    origamiserviceuser authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    69054f3 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2021

  1. Configuration menu
    Copy the full SHA
    b9db3d8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #58 from Financial-Times/dependabot/npm_and_yarn/s…

    …tylelint-13.13.0
    
    Bump stylelint from 13.12.0 to 13.13.0
    origamiserviceuser authored Apr 26, 2021
    Configuration menu
    Copy the full SHA
    394c36d View commit details
    Browse the repository at this point in the history

Commits on May 3, 2021

  1. Configuration menu
    Copy the full SHA
    fe300e4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #59 from Financial-Times/dependabot/npm_and_yarn/s…

    …tylelint-13.13.1
    
    Bump stylelint from 13.13.0 to 13.13.1
    origamiserviceuser authored May 3, 2021
    Configuration menu
    Copy the full SHA
    a722d91 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2021

  1. Configuration menu
    Copy the full SHA
    e3112e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0b64831 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3d266df View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ff6391a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7a8087d View commit details
    Browse the repository at this point in the history

Commits on May 11, 2021

  1. Configuration menu
    Copy the full SHA
    ce6fba3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #61 from Financial-Times/dependabot/npm_and_yarn/l…

    …odash-4.17.21
    
    Bump lodash from 4.17.19 to 4.17.21
    origamiserviceuser authored May 11, 2021
    Configuration menu
    Copy the full SHA
    6c03ee1 View commit details
    Browse the repository at this point in the history
  3. Bump hosted-git-info from 2.8.8 to 2.8.9 (#66)

    Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9.
    - [Release notes](https://github.com/npm/hosted-git-info/releases)
    - [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md)
    - [Commits](npm/hosted-git-info@v2.8.8...v2.8.9)
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 11, 2021
    Configuration menu
    Copy the full SHA
    f1065eb View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2021

  1. allow single letter mixins

    If an origami component has a single letter name, then it's primary mixin would be a single letter
    E.G. The component `@financial-times/a` would have a primary mixin named `a`.
    
    I came across this when testing out a new version of `obt init` and I set the component name to `a`.
    
    I'm not sure if we want this functionality, maybe we want to disallow single letter component names instead?
    JakeChampion committed Jun 8, 2021
    Configuration menu
    Copy the full SHA
    24b0ce5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c44431e View commit details
    Browse the repository at this point in the history
  3. Bump trim-newlines from 3.0.0 to 3.0.1

    Bumps [trim-newlines](https://github.com/sindresorhus/trim-newlines) from 3.0.0 to 3.0.1.
    - [Release notes](https://github.com/sindresorhus/trim-newlines/releases)
    - [Commits](https://github.com/sindresorhus/trim-newlines/commits)
    
    ---
    updated-dependencies:
    - dependency-name: trim-newlines
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jun 8, 2021
    Configuration menu
    Copy the full SHA
    f683c85 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #62 from Financial-Times/dependabot/npm_and_yarn/t…

    …rim-newlines-3.0.1
    
    Bump trim-newlines from 3.0.0 to 3.0.1
    origamiserviceuser authored Jun 8, 2021
    Configuration menu
    Copy the full SHA
    b0a660c View commit details
    Browse the repository at this point in the history
  5. Bump glob-parent from 5.1.1 to 5.1.2

    Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2.
    - [Release notes](https://github.com/gulpjs/glob-parent/releases)
    - [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md)
    - [Commits](gulpjs/glob-parent@v5.1.1...v5.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: glob-parent
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jun 8, 2021
    Configuration menu
    Copy the full SHA
    374b154 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #63 from Financial-Times/dependabot/npm_and_yarn/g…

    …lob-parent-5.1.2
    
    Bump glob-parent from 5.1.1 to 5.1.2
    origamiserviceuser authored Jun 8, 2021
    Configuration menu
    Copy the full SHA
    5a6af28 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2021

  1. Bump glob-parent from 5.1.1 to 5.1.2

    Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2.
    - [Release notes](https://github.com/gulpjs/glob-parent/releases)
    - [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md)
    - [Commits](gulpjs/glob-parent@v5.1.1...v5.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: glob-parent
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jun 11, 2021
    Configuration menu
    Copy the full SHA
    aa152fd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #64 from Financial-Times/dependabot/npm_and_yarn/g…

    …lob-parent-5.1.2
    
    Bump glob-parent from 5.1.1 to 5.1.2
    origamiserviceuser authored Jun 11, 2021
    Configuration menu
    Copy the full SHA
    b74a319 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2021

  1. Bump postcss from 7.0.31 to 7.0.36

    Bumps [postcss](https://github.com/postcss/postcss) from 7.0.31 to 7.0.36.
    - [Release notes](https://github.com/postcss/postcss/releases)
    - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
    - [Commits](postcss/postcss@7.0.31...7.0.36)
    
    ---
    updated-dependencies:
    - dependency-name: postcss
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jun 17, 2021
    Configuration menu
    Copy the full SHA
    ee2dea8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #64 from Financial-Times/dependabot/npm_and_yarn/p…

    …ostcss-7.0.36
    
    Bump postcss from 7.0.31 to 7.0.36
    origamiserviceuser authored Jun 17, 2021
    Configuration menu
    Copy the full SHA
    49c26bc View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2021

  1. Add 'presets/stylelint-config-origami-component/' from commit '49c26b…

    …cc301697463845a2ef2ea8ef196139ca18'
    
    git-subtree-dir: presets/stylelint-config-origami-component
    git-subtree-mainline: c18a35e
    git-subtree-split: 49c26bc
    chee committed Sep 23, 2021
    Configuration menu
    Copy the full SHA
    c65bc62 View commit details
    Browse the repository at this point in the history
  2. Add 'presets/eslint-config-origami-component/' from commit 'f1065ebc1…

    …9a83bac0b483afe95713b2f7d82209a'
    
    git-subtree-dir: presets/eslint-config-origami-component
    git-subtree-mainline: c65bc62
    git-subtree-split: f1065eb
    chee committed Sep 23, 2021
    Configuration menu
    Copy the full SHA
    e4ffdb0 View commit details
    Browse the repository at this point in the history
  3. Add 'presets/remark-preset-lint-origami-component/' from commit 'b74a…

    …319e272d9eb4389e405ca8b676a6db5b9707'
    
    git-subtree-dir: presets/remark-preset-lint-origami-component
    git-subtree-mainline: e4ffdb0
    git-subtree-split: b74a319
    chee committed Sep 23, 2021
    Configuration menu
    Copy the full SHA
    f0c3ce7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    76c0174 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4de9883 View commit details
    Browse the repository at this point in the history
  6. chore: regenerate config

    chee committed Sep 23, 2021
    Configuration menu
    Copy the full SHA
    0a42075 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    34efbdc View commit details
    Browse the repository at this point in the history