Skip to content

Commit 40c8bef

Browse files
committed
v0.1.0
1 parent 841c5c5 commit 40c8bef

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.npmignore

-10
This file was deleted.

package.json

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "papm",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Performant Atom Package Manager",
55
"repository": "https://github.com/atom-community/papm",
66
"license": "MIT",
@@ -10,19 +10,31 @@
1010
"bin": {
1111
"apm": "bin/apm"
1212
},
13+
"files": [
14+
"lib",
15+
"bin",
16+
"src",
17+
"script",
18+
"templates",
19+
"native-module",
20+
".npmrc",
21+
"pnpm-lock.yaml",
22+
"deprecated-packages.json"
23+
],
1324
"scripts": {
1425
"build": "npm run clean.lib && npm run tsc",
1526
"build.test": "npm run get.fixtures && shx rm -rf ./dist-spec/ ./native-module/build && shx cp -r spec dist-spec && babel ./dist-spec --out-dir ./dist-spec",
1627
"check-version": "node script/check-version.js",
1728
"clean": "npm run clean.bin && npm run clean.lib",
1829
"clean.bin": "shx rm -rf bin/node_darwin_x64 bin/node.exe bin/node",
19-
"clean.lib": "shx rm -rf lib/",
30+
"clean.lib": "shx rm -rf lib/ ./native-module/build",
2031
"copy": "shx cp -r src lib",
2132
"format": "prettier --write .",
2233
"get.fixtures": "node ./script/get-fixtures.js && shx cp -r ./spec/fixtures/r.tmbundle-patch/Snippets/ ./spec/fixtures/r.tmbundle/",
2334
"postinstall": "node ./script/download-node.js && shx chmod +x ./bin/npm && shx chmod +x ./bin/apm",
2435
"lint": "eslint . --fix",
2536
"prepare": "npm run build",
37+
"prepublishOnly": "npm run clean.bin",
2638
"test": "npm run check-version && npm run build.test && jasmine-focused --captureExceptions dist-spec",
2739
"test.format": "prettier . --check",
2840
"test.lint": "eslint .",

pnpm-workspace.yaml

-2
This file was deleted.

0 commit comments

Comments
 (0)