-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from luckymarmot/fix-es6
Fixes + ES6
- Loading branch information
Showing
22 changed files
with
4,833 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
'presets': [ | ||
'es2015', | ||
'stage-0', | ||
'stage-1', | ||
'stage-2', | ||
'stage-3' | ||
], | ||
'plugins': ['transform-decorators-legacy'] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,60 @@ | ||
.DS_Store | ||
node_modules/ | ||
### Build Folder ### | ||
|
||
build/ | ||
|
||
### Node ### | ||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
|
||
|
||
### OSX ### | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v8.11.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
identifier=com.luckymarmot.PawExtensions.PHPcURLCodeGenerator | ||
extensions_dir=$(HOME)/Library/Containers/com.luckymarmot.Paw/Data/Library/Application Support/com.luckymarmot.Paw/Extensions/ | ||
|
||
all: build | ||
|
||
build: | ||
./node_modules/.bin/webpack --bail --display-error-details | ||
cp README.md LICENSE ./build/$(identifier)/ | ||
|
||
install: clean build | ||
mkdir -p "$(extensions_dir)$(identifier)/" | ||
cp -r ./build/$(identifier)/* "$(extensions_dir)$(identifier)/" | ||
|
||
archive: clean build | ||
cd ./build/; zip -r PHPcURLCodeGenerator.zip "$(identifier)/" | ||
|
||
clean: | ||
rm -Rf ./build |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,31 @@ | ||
{ | ||
"name": "Paw-PHPcURLCodeGenerator", | ||
"version": "1.0.2", | ||
"version": "1.1.0", | ||
"main": "src/PHPcURLCodeGenerator.js", | ||
"license": "MIT", | ||
"homepage": "https://github.com/luckymarmot/Paw-PHPcURLCodeGenerator", | ||
"devDependencies": { | ||
"coffee-script": "latest", | ||
"mkdirp": "~0.5.0", | ||
"ncp": "~1.0.1" | ||
"babel-core": "^6.26.0", | ||
"babel-loader": "^7.1.2", | ||
"babel-plugin-transform-decorators-legacy": "^1.3.4", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babel-preset-stage-0": "6.3.13", | ||
"babel-preset-stage-1": "6.3.13", | ||
"babel-preset-stage-2": "6.3.13", | ||
"babel-preset-stage-3": "6.3.13", | ||
"path": "^0.12.7", | ||
"raw-loader": "^0.5.1", | ||
"webpack": "^4.6.0", | ||
"webpack-cli": "^2.0.15" | ||
}, | ||
"dependencies": { | ||
"mustache": "~0.8.2" | ||
"scripts": { | ||
"build": "./node_modules/.bin/webpack --bail --display-error-details" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:luckymarmot/Paw-PHPcURLCodeGenerator.git" | ||
}, | ||
"dependencies": { | ||
"mustache": "~2.3.0" | ||
} | ||
} |
Oops, something went wrong.