Apache cordova

Clone this repo:
  1. e594cd4 Merge pull request #141 from apache/dependabot/npm_and_yarn/babel/traverse-7.23.2 by Norman Breau · 5 months ago master
  2. 505a8d4 Bump @babel/traverse from 7.18.9 to 7.23.2 by dependabot[bot] · 5 months ago
  3. 659a4e7 chore(npm): rebuilt package-lock to v2 (#133) by エリス · 1 year, 8 months ago
  4. 335874e Bump simple-plist from 1.1.0 to 1.3.1 (#127) by dependabot[bot] · 1 year, 10 months ago
  5. 8b98cab ci: add node-14.x to workflow (#117) by エリス · 3 years, 4 months ago

cordova-node-xcode

NPM

Node CI

Parser utility for xcodeproj project files

Allows you to edit xcodeproject files and write them back out.

based on donated code from alunny / node-xcode

Example

// API is a bit wonky right now
var xcode = require('xcode'),
    fs = require('fs'),
    projectPath = 'myproject.xcodeproj/project.pbxproj',
    myProj = xcode.project(projectPath);

// parsing is async, in a different process
myProj.parse(function (err) {
    myProj.addHeaderFile('foo.h');
    myProj.addSourceFile('foo.m');
    myProj.addFramework('FooKit.framework');
   
    fs.writeFileSync(projectPath, myProj.writeSync());
    console.log('new project written');
});

Working on the parser

If there's a problem parsing, you will want to edit the grammar under lib/parser/pbxproj.pegjs. You can test it online with the PEGjs online thingy at https://pegjs.org/online - I have had some mixed results though.

Tests under the test/parser directory will compile the parser from the grammar. Other tests will use the prebuilt parser (lib/parser/pbxproj.js).

To rebuild the parser js file after editing the grammar, run:

npm run pegjs

(and be sure to restore the Apache license notice in lib/parser/pbxproj.js before committing)

License

Apache V2