Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Decaffeinate #48

Merged
merged 43 commits into from Oct 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
a895fd4
Travis and AppVeyor new node versions
aminya Aug 29, 2020
53850ad
dev dependencies
aminya Jul 11, 2020
b27683b
scripts instead of grunt file
aminya Jul 11, 2020
840d6dd
rollup config
aminya Jul 11, 2020
3c2b689
babel config
aminya Jul 11, 2020
84c6151
use babel-preset-atomic and cross-env
aminya Aug 29, 2020
0683be3
use rollup-plugin-atomic
aminya Aug 29, 2020
1e5f4e5
decaffeinate
aminya Jul 12, 2020
22510e6
isAbsolute: set default value if input is null
aminya Aug 29, 2020
07fd00b
isDirectorySync use const stat
aminya Jul 12, 2020
f2d2af9
isFileSync: use const stat
aminya Jul 12, 2020
753462a
isSymbolicLinkSync: use const stat
aminya Jul 12, 2020
ee02753
getSizeSync: use coalescing operator
aminya Jul 12, 2020
98af38c
list: use lambda
aminya Jul 12, 2020
5e5d53b
filterExtensions: use lambda
aminya Jul 12, 2020
623b433
listTreeSync: use lambda
aminya Jul 12, 2020
15cce17
move: use lambda
aminya Jul 12, 2020
e3a3cad
move: remove excess return
aminya Jul 12, 2020
fb69a28
moveSync: remove excess return
aminya Aug 29, 2020
3661c7b
writeFileSync: remove excess return
aminya Jul 12, 2020
cb8ca2b
writeFile: remove excess return
aminya Jul 12, 2020
186c3bf
copy: remove excess return + use lambda
aminya Jul 12, 2020
d52c834
copySync: remove excess return
aminya Jul 12, 2020
77ba036
copyFileSync: remove excess return
aminya Jul 12, 2020
da0e3bc
makeTreeSync remove excess return
aminya Aug 29, 2020
6085f18
makeTree: remove excess return
aminya Jul 12, 2020
d2ae59c
traverseTreeSync: using const
aminya Aug 29, 2020
b545bd3
traverseTree: remove excess return + formatting
aminya Jul 12, 2020
30ba552
resolve: assign before if
aminya Aug 29, 2020
cdbf2c0
resolveOnLoadPath: remove excess Array.from
aminya Jul 12, 2020
e8a7011
statSyncNoException: remove excess Array.from
aminya Jul 12, 2020
ad6b200
lstatSyncNoException: remove excess Array.from
aminya Jul 12, 2020
3e70a5c
statSyncNoException: remove excess Array.from
aminya Jul 12, 2020
93dd254
lstatSyncNoException: remove excess Array.from
aminya Jul 12, 2020
82c9407
use const for constants
aminya Jul 12, 2020
c9f3851
isPathValid function
aminya Jul 12, 2020
2534a30
isMoveTargetValid: function + use lambda for callbacks
aminya Jul 12, 2020
4f1cc98
isMoveTargetValidSync: use let
aminya Jul 12, 2020
6c640f4
check if fsPlus has the function
aminya Aug 29, 2020
80762e5
fsPlus: use const
aminya Jul 12, 2020
31a2b62
remove decaffeinate remainder
aminya Jul 12, 2020
0103acc
spec: require lib
aminya Jul 12, 2020
dd0fe0a
Update package-lock.json
aminya Jul 12, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -6,8 +6,9 @@ notifications:
on_failure: change

node_js:
- 7
- 6
- 14
- 12
- 10

git:
depth: 10
Expand Down
46 changes: 0 additions & 46 deletions Gruntfile.coffee

This file was deleted.

7 changes: 5 additions & 2 deletions appveyor.yml
@@ -1,12 +1,15 @@
environment:
nodejs_version: "6"
matrix:
- nodejs_version: "10"
- nodejs_version: "12"
- nodejs_version: "14"

platform:
- x64
- x86

install:
- ps: Install-Product node $env:nodejs_version
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install

test_script:
Expand Down
10 changes: 10 additions & 0 deletions babel.config.js
@@ -0,0 +1,10 @@
let presets = ["babel-preset-atomic"]

let plugins = []

module.exports = {
presets: presets,
plugins: plugins,
exclude: "node_modules/**",
sourceMap: "inline",
}