yamlstar 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Changes ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ version: 0.0.1
3
+ date: Mon Apr 17 12:19:29 PM PDT 2023
4
+ changes:
5
+ - First release
package/Makefile ADDED
@@ -0,0 +1,21 @@
1
+ SHELL := bash
2
+
3
+ COFFEE := $(shell find src -type f -name '*.coffee')
4
+ JS := $(COFFEE:%.coffee=%.js)
5
+ JS := $(JS:src/%=lib/%)
6
+
7
+ default:
8
+ @printf '%s\n' $(JS)
9
+
10
+ build: $(JS)
11
+
12
+ lib/%.js: src/%.coffee
13
+ @mkdir -p $(dir $@)
14
+ coffee -c -p $< > $@
15
+
16
+ publish: build
17
+ npm $@
18
+
19
+ clean:
20
+ rm -f package*
21
+ rm -fr node_modules
File without changes
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "yamlstar",
3
+ "version": "0.0.1",
4
+ "description": "A cross-language, common API YAML reference framework",
5
+ "main": "index.js",
6
+ "directories": {
7
+ "lib": "lib"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/yaml/yamlstar.git"
15
+ },
16
+ "author": "Ingy döt Net",
17
+ "license": "MIT",
18
+ "bugs": {
19
+ "url": "https://github.com/yaml/yamlstar/issues"
20
+ },
21
+ "homepage": "https://github.com/yaml/yamlstar#readme"
22
+ }
@@ -0,0 +1,4 @@
1
+ require 'yaml'
2
+
3
+ class yamlstar
4
+ version: '0.0.1'