Skip to content

Commit 1f5de2e

Browse files
committed
Migrate to npm
1 parent 9da0f42 commit 1f5de2e

31 files changed

Lines changed: 18294 additions & 14466 deletions

.travis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ node_js:
33
- node
44
- 7
55
- 6
6-
cache: yarn
6+
cache: npm
77
install:
8-
- yarn install
9-
- yarn run test:functional:setup
8+
- npm install
9+
- npm run test:functional:setup
1010
before_script:
11-
- yarn run build
11+
- npm run build
1212
script:
13-
- yarn run test:coverage
14-
- yarn run test:functional
13+
- npm run test:coverage
14+
- npm run test:functional
1515
after_success:
16-
- yarn run coveralls
16+
- npm run coveralls
1717
deploy:
1818
provider: npm
1919
email: devwurm@devwurm.net

functional_tests/fixture_1/fixture_1.func.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('Fixture 1: just bundling the assets', function () {
1111

1212
before('Run webpack build', function () {
1313
cd(resolve(__dirname));
14-
const { code, stderr, stdout } = exec('yarn run build');
14+
const { code, stderr, stdout } = exec('npm run build');
1515

1616
if (code != 0) return expect.fail(stderr, '', 'Webpack build failed');
1717

0 commit comments

Comments
 (0)