Scripts run with yarn run seem to break npm auth.
Tested on:
- macOS 10.12.6
- node v8.11.0
- npm v5.8.0
- yarn v1.6.0
| SHELL := /bin/bash | |
| PATH := .:$(PATH) | |
| .PHONY: broken | |
| broken: | |
| env | |
| shell-script | |
| .PHONY: also_broken | |
| also_broken: |
| 'use strict' | |
| module.exports = { | |
| root: true, | |
| extends: ['plugin:@typescript-eslint/recommended'], | |
| rules: { | |
| '@typescript-eslint/no-unused-vars': 'error', | |
| }, | |
| } |
| node_modules |
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <object data="top.svg" type="image/svg+xml"></object> | |
| <object data="bottom.svg" type="image/svg+xml"></object> | |
| </body> | |
| </html> |
| deb mirror://mirrors.ubuntu.com/mirrors.txt trusty main restricted universe multiverse | |
| deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-updates main restricted universe multiverse | |
| deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-backports main restricted universe multiverse | |
| deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-security main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu trusty main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu trusty-security main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse |
| # simple AVR Makefile | |
| # | |
| # written by michael cousins (http://github.com/mcous) | |
| # released to the public domain | |
| # Makefile | |
| # | |
| # targets: | |
| # all: compiles the source code | |
| # test: tests the isp connection to the mcu |