Skip to content

Commit

Permalink
� Init readme
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcardeenas committed Jun 10, 2019
1 parent 0d5c934 commit b8b4435
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# whatsappJS
# 🤖sulla
Javascript whatsapp framework (web whatsapp driver)
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nico",
"name": "sulla",
"version": "1.0.0",
"description": "Javascript whatsapp framework",
"main": "dist/index.js",
Expand All @@ -21,7 +21,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcardeenas/nico.git"
"url": "git+https://github.com/danielcardeenas/sulla.git"
},
"keywords": [
"whatsapp",
Expand All @@ -34,9 +34,9 @@
"author": "Daniel Cardenas",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielcardeenas/nico/issues"
"url": "https://github.com/danielcardeenas/sulla/issues"
},
"homepage": "https://github.com/danielcardeenas/nico#readme",
"homepage": "https://github.com/danielcardeenas/sulla#readme",
"devDependencies": {
"@types/node": "^12.0.7",
"@types/puppeteer": "^1.12.4",
Expand Down
6 changes: 4 additions & 2 deletions src/lib/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Files here should not be touched.
---------------------
Files inside this directory are automatically generated and copied into dist bundle with the build scripts

---

Files inside this directory are automatically generated and copied into dist bundle with the build scripts
1 change: 1 addition & 0 deletions src/lib/middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ WAPI.waitNewMessages(false, function (data) {
window[ExposedFn.OnMessage](message);
});
});

24 changes: 10 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"compilerOptions": {
/* Basic Options */
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */,
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
// "lib": [], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"declaration": true /* Generates corresponding '.d.ts' file. */,
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "./dist", /* Redirect output structure to the directory. */
"outDir": "./dist" /* Redirect output structure to the directory. */,
// "rootDir": "./src/", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */
"removeComments": true, /* Do not emit comments to output. */
"removeComments": true /* Do not emit comments to output. */,
// "noEmit": true, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
Expand Down Expand Up @@ -42,8 +42,8 @@
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
"allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */

/* Source Map Options */
Expand All @@ -56,10 +56,6 @@
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
},
"include": [
"src/**/*"
],
"exclude": [
"src/middleware/middleware.ts"
]
}
"include": ["src/**/*"],
"exclude": ["src/middleware/middleware.ts"]
}

0 comments on commit b8b4435

Please sign in to comment.