-
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 #20 from InDIOS/development
Bump to version 1.0.0
- Loading branch information
Showing
181 changed files
with
17,140 additions
and
17,278 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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"amd": true, | ||
"es6": true, | ||
"node": true | ||
"commonjs": true, | ||
"es6": true, | ||
"node": true, | ||
"amd": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 11, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"html" | ||
], | ||
}, | ||
"plugins": [ | ||
"html" | ||
], | ||
"rules": { | ||
"no-const-assign": "error", | ||
"no-this-before-super": "error", | ||
"no-this-before-super": "warn", | ||
"no-undef": "error", | ||
"semi": "warn", | ||
"eqeqeq": [ | ||
"warn", | ||
"smart" | ||
], | ||
"no-unreachable": "error", | ||
"no-unused-vars": "warn", | ||
"constructor-super": "warn", | ||
"eqeqeq": ["warn", "smart"], | ||
"semi": "warn", | ||
"no-unused-vars": "warn", | ||
"constructor-super": "warn", | ||
"valid-typeof": "error" | ||
} | ||
} |
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,10 +1,8 @@ | ||
# Dependency directories | ||
.vscode/ | ||
node_modules/ | ||
specs/* | ||
!specs/components | ||
specs/components/* | ||
!specs/components/readme.txt | ||
build/ | ||
tests/ | ||
test/**/*.js | ||
test/**/*.map | ||
tools/*.js | ||
tools/*.map | ||
test/index.js |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
examples/ | ||
src/ | ||
test/ | ||
specs/ | ||
tests/ | ||
tools/index.ts | ||
tools/tsconfig.json | ||
package-lock.json | ||
|
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 |
---|---|---|
@@ -1,67 +1,35 @@ | ||
{ | ||
// Utilizar IntelliSense para aprender acerca de los posibles atributos. | ||
// Mantenga el puntero para ver las descripciones de los existentes atributos | ||
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Tests", | ||
"program": "${workspaceFolder}/test/index.js" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Context", | ||
"program": "${workspaceFolder}/src/utilities/context.ts", | ||
"outFiles": [ | ||
"${workspaceFolder}/build/**/*.js" | ||
] | ||
}, | ||
{ | ||
"type": "firefox", | ||
"request": "launch", | ||
"reAttach": true, | ||
"name": "Launch index.html", | ||
"firefoxExecutable": "D:\\INSTALLERS\\Internet\\FirefoxPortable\\App\\Firefox\\firefox.exe", | ||
"file": "${workspaceFolder}/todomvc/dist/index.html" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Generator", | ||
"program": "${workspaceFolder}/src/index.ts", | ||
"outFiles": [ | ||
"${workspaceFolder}/build/**/*.js" | ||
] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch CLI", | ||
"program": "${workspaceFolder}/bin/trebor.js", | ||
"cwd": "D:\\OTHERS\\Downloads\\electric-count", | ||
"args": [ | ||
"-i", | ||
"electric-count.html", | ||
// "./examples/counter/src/components/counter.html", | ||
// "-o", | ||
// "./examples/counter/src/components/counter.umd.js" | ||
// "-i", | ||
// "./examples/todomvc/src/components/todo.html", | ||
// "-o", | ||
// "./examples/todomvc/src/components/todo.umd.js" | ||
] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch CSS", | ||
"program": "${workspaceFolder}/src/utilities/cssToJson.ts", | ||
"outFiles": [ | ||
"${workspaceFolder}/build/**/*.js" | ||
] | ||
} | ||
] | ||
// Use IntelliSense para saber los atributos posibles. | ||
// Mantenga el puntero para ver las descripciones de los existentes atributos. | ||
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Iniciar parser", | ||
"program": "${workspaceFolder}\\test.js" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Iniciar eslint parser", | ||
"program": "${workspaceFolder}\\meriyahEslintParser.js" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Iniciar test", | ||
"program": "${workspaceFolder}\\test\\index.ts", | ||
"outFiles": ["${workspaceFolder}\\test\\**/*.js"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Iniciar cli", | ||
"program": "${workspaceFolder}\\bin\\trebor.js", | ||
"cwd": "${workspaceFolder}", | ||
"args": ["-i", "tests/testing.html"] | ||
} | ||
], | ||
} |
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,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules\\typescript\\lib" | ||
"typescript.tsdk": "node_modules\\typescript\\lib" | ||
} |
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
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
Oops, something went wrong.