Skip to content

Commit fdd342c

Browse files
author
Kelly Selden
committed
chore: set up monorepo
1 parent 23a1ed3 commit fdd342c

12 files changed

Lines changed: 4317 additions & 7408 deletions

.travis.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,27 @@ node_js:
44
- node
55
branches:
66
only:
7-
- v4
7+
- master
8+
# npm version tags
9+
- /^(?:[a-z-]+|@[a-z-]+\/[a-z-]+)@\d+\.\d+\.\d+$/
810
cache:
9-
directories:
10-
- "$HOME/.npm"
11+
npm: false
1112
env:
1213
global:
1314
- DEBUG=ember-cli-update,boilerplate-update,git-diff-apply,git-fixtures
15+
before_install:
16+
- curl -L https://unpkg.com/@pnpm/self-installer | node
17+
install:
18+
- pnpm install
1419
jobs:
1520
allow_failures:
1621
- os: osx
1722
include:
1823
- os: osx
1924
- script:
20-
- npm run lint
25+
- npm run lint:git
26+
- npm run lint:js
27+
- if: branch = master AND tag IS blank AND type = push
28+
script:
29+
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
30+
- npm run release

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44

55
branches:
66
only:
7-
- v4
7+
- master
88

99
# Fix line endings in Windows. (runs before repo cloning)
1010
init:
@@ -14,7 +14,8 @@ init:
1414
# Install scripts. (runs after repo cloning)
1515
install:
1616
- ps: Install-Product node $env:nodejs_version
17-
- npm ci
17+
- curl -L https://unpkg.com/@pnpm/self-installer | node
18+
- pnpm install
1819

1920
# Post-install test scripts.
2021
test_script:

commitlint.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
module.exports = {
4+
extends: ['@commitlint/config-conventional']
5+
};

0 commit comments

Comments
 (0)