diff --git a/.gitignore b/.gitignore index e69de29..b5ac0ef 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,15 @@ +.idea +.DS_Store +package-lock.json + +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +miniprogram_dist +miniprogram_dev +miniprogram_npm +node_modules +coverage diff --git a/package.json b/package.json new file mode 100644 index 0000000..55413aa --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "wxapp-2048", + "version": "1.0.0", + "description": "2048小程序", + "main": "app.js", + "dependencies": {}, + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/natee/wxapp-2048.git" + }, + "keywords": [ + "2048", + "wechat", + "miniprogram" + ], + "author": "kerncink@gmail.com", + "license": "MIT", + "bugs": { + "url": "https://github.com/natee/wxapp-2048/issues" + }, + "homepage": "https://github.com/natee/wxapp-2048#readme" +} diff --git a/project.config.json b/project.config.json index 2fec020..c00c392 100644 --- a/project.config.json +++ b/project.config.json @@ -5,7 +5,10 @@ "es6": true, "postcss": true, "minified": true, - "newFeature": true + "newFeature": true, + "autoAudits": false, + "checkInvalidKey": true, + "nodeModules": true }, "compileType": "miniprogram", "libVersion": "1.5.4", diff --git a/sitemap.json b/sitemap.json new file mode 100644 index 0000000..ca02add --- /dev/null +++ b/sitemap.json @@ -0,0 +1,7 @@ +{ + "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", + "rules": [{ + "action": "allow", + "page": "*" + }] +} \ No newline at end of file