Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/karma/release.config.js

    r59329aa re29cc2e  
    22  // Add logging for releases until we are fully confident of the release solution.
    33  debug: true,
    4   branch: 'master',
     4  branches: 'master',
    55  verifyConditions: [
    66    '@semantic-release/changelog',
     
    2121    '@semantic-release/github',
    2222    './tools/update-docs'
    23   ]
     23  ],
     24
     25  // The release rules determine what kind of release should be triggered
     26  // based on the information included in the commit message. The default
     27  // rules used by semantic-release are the same, but they are set explicitly
     28  // for better visibility.
     29  // See https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-rules.js
     30  releaseRules: [
     31    { breaking: true, release: 'major' },
     32    { revert: true, release: 'patch' },
     33    { type: 'feat', release: 'minor' },
     34    { type: 'fix', release: 'patch' },
     35    { type: 'perf', release: 'patch' }
     36  ],
     37
     38  // The preset determines which commits are included in the changelog and how
     39  // the changelog is formatted. The default value used by semantic-release is
     40  // the same, but it is set explicitly for visibility.
     41  // See https://semantic-release.gitbook.io/semantic-release/#commit-message-format
     42  // See https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular
     43  preset: 'angular'
    2444}
Note: See TracChangeset for help on using the changeset viewer.