Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

rm -rf does not work on Windows #274

Merged
merged 1 commit into from
Apr 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean:all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"clean:all": "rimraf ./node_modules && rimraf ./packages/*/node_modules",
"clean:install": "npm run clean:all && npm install",
"clean:obsolete-snapshots": "npm test -- -u",
"compile": "lerna run compile",
Expand Down Expand Up @@ -77,6 +77,7 @@
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"react-router": "^3.0.2",
"rimraf": "^2.6.1",
"shelljs": "^0.7.6",
"stylelint": "^7.8.0",
"stylelint-config-sass-guidelines": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-arrange/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-badge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-button-group/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-content-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-date-picker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-icon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
},
"scripts": {
"compilescripts": "npm run compilescripts:clean && npm run compilescripts:build",
"compilescripts:clean": "rm -rf scripts/lib",
"compilescripts:clean": "$(cd ..; npm bin)/rimraf scripts/lib",
"compilescripts:build": "$(cd ..; npm bin)/babel scripts/src --out-dir scripts/lib --copy-files",
"migrate-csv": "node scripts/lib/migrate-csv/index.js",
"migrate-svg": "node scripts/lib/migrate-svg/index.js",
"generate-icon": "node scripts/lib/generate-icon/index.js",
"generate-example": "node scripts/lib/generate-example/index.js",
"migrate-cerner-one-icons": "npm run compilescripts && npm run migrate-csv && npm run migrate-svg && npm run generate-icon && npm run generate-example",
"compile": "npm run compile:clean && npm run compile:build && npm run compilescripts",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-legacy-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-mixins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:scss",
"lint:scss": "$(cd ..; npm bin)/stylelint src/**/*.scss",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-progress-bar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-props-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-responsive-element/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-slide-panel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-standout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-status/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-title/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"homepage": "https://github.com/cerner/terra-core#readme",
"scripts": {
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rm -rf lib",
"compile:clean": "$(cd ..; npm bin)/rimraf lib",
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
Expand Down